QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#361748 | #8516. LED Matrix | ucup-team1516# | AC ✓ | 3ms | 5760kb | C++20 | 2.6kb | 2024-03-23 13:10:13 | 2024-03-23 13:10:13 |
Judging History
answer
#include<bits/stdc++.h>
using namespace std;
#define ll long long
#define ull unsigned long long
#define db double
#define pii pair<int,int>
#define pli pair<ll,int>
#define pil pair<int,ll>
#define pll pair<ll,ll>
#define ti3 tuple<int,int,int>
#define int128 __int128_t
#define pii128 pair<int128,int128>
const int inf = 1 << 30;
const ll linf = 1e18;
const db EPS = 1e-10;
const db pi = acos(-1);
template<class T> bool chmin(T& x, T y){
if(x > y) {
x = y;
return true;
} else return false;
}
template<class T> bool chmax(T& x, T y){
if(x < y) {
x = y;
return true;
} else return false;
}
// overload macro
#define CAT( A, B ) A ## B
#define SELECT( NAME, NUM ) CAT( NAME, NUM )
#define GET_COUNT( _1, _2, _3, _4, _5, _6 /* ad nauseam */, COUNT, ... ) COUNT
#define VA_SIZE( ... ) GET_COUNT( __VA_ARGS__, 6, 5, 4, 3, 2, 1 )
#define VA_SELECT( NAME, ... ) SELECT( NAME, VA_SIZE(__VA_ARGS__) )(__VA_ARGS__)
// rep(overload)
#define rep( ... ) VA_SELECT(rep, __VA_ARGS__)
#define rep2(i, n) for (int i = 0; i < int(n); i++)
#define rep3(i, a, b) for (int i = a; i < int(b); i++)
#define rep4(i, a, b, c) for (int i = a; i < int(b); i += c)
// repll(overload)
#define repll( ... ) VA_SELECT(repll, __VA_ARGS__)
#define repll2(i, n) for (ll i = 0; i < (ll)(n); i++)
#define repll3(i, a, b) for (ll i = a; i < (ll)(b); i++)
#define repll4(i, a, b, c) for (ll i = a; i < (ll)(b); i += c)
// rrep(overload)
#define rrep( ... ) VA_SELECT(rrep, __VA_ARGS__)
#define rrep2(i, n) for (int i = n - 1; i >= 0; i--)
#define rrep3(i, a, b) for (int i = b - 1; i >= a; i--)
#define rrep4(i, a, b, c) for (int i = b - 1; i >= a; i -= c)
// rrepll(overload)
#define rrepll( ... ) VA_SELECT(rrepll, __VA_ARGS__)
#define rrepll2(i, n) for (ll i = (ll)(n) - 1; i >= 0ll; i--)
#define rrepll3(i, a, b) for (ll i = b - 1; i >= (ll)(a); i--)
#define rrepll4(i, a, b, c) for (ll i = b - 1; i >= (ll)(a); i -= c)
// for_earh
#define fore(e, v) for (auto&& e : v)
// vector
#define all(v) v.begin(), v.end()
#define rall(v) v.rbegin(), v.rend()
int R, C, K;
string M[1010], P[1010];
int main() {
cin.tie(nullptr);
ios_base::sync_with_stdio(false);
cout << fixed << setprecision(20);
cin >> R >> C >> K;
bool flag = true;
rep (i, R) {
cin >> M[i] >> P[i];
bool judge=true;
bool need=false;
rep(j,K){
need |= P[i][j]=='*';
}
rep(j,C){
if (need && M[i][j]=='-') flag=false;
}
}
cout<<"NY"[flag]<<'\n';
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 1ms
memory: 3680kb
input:
6 6 6 ****** --*--- ****** -**--- ****** ****** ****** ****** ****** -**--- *****- --*---
output:
N
result:
ok "N"
Test #2:
score: 0
Accepted
time: 0ms
memory: 3680kb
input:
2 4 6 **** ------ ***- *-----
output:
N
result:
ok "N"
Test #3:
score: 0
Accepted
time: 0ms
memory: 3716kb
input:
2 6 4 ****** **** *-**-* ----
output:
Y
result:
ok "Y"
Test #4:
score: 0
Accepted
time: 0ms
memory: 3680kb
input:
1 1 1 * *
output:
Y
result:
ok "Y"
Test #5:
score: 0
Accepted
time: 0ms
memory: 3684kb
input:
1 1 1 * -
output:
Y
result:
ok "Y"
Test #6:
score: 0
Accepted
time: 0ms
memory: 3624kb
input:
1 1 1 - *
output:
N
result:
ok "N"
Test #7:
score: 0
Accepted
time: 0ms
memory: 3624kb
input:
1 1 1 - -
output:
Y
result:
ok "Y"
Test #8:
score: 0
Accepted
time: 0ms
memory: 3628kb
input:
28 120 84 *-***********-***********-***********-***********-***********-***********-***********-***********-***********-********** *------**----**------**----**------**----**------**----**------**----**------**----* ******-***********-***********-***********-***********-***********-***********-*****...
output:
N
result:
ok "N"
Test #9:
score: 0
Accepted
time: 0ms
memory: 3644kb
input:
40 154 168 ********************************************************************************************************************************************************** *----**----**----**----**----**----**----**----**----**----**----**----**----**----**----**----**----**----**----**----**----**----**-...
output:
Y
result:
ok "Y"
Test #10:
score: 0
Accepted
time: 0ms
memory: 3664kb
input:
1 1 2 * -*
output:
Y
result:
ok "Y"
Test #11:
score: 0
Accepted
time: 0ms
memory: 3676kb
input:
1 1 3 * -*-
output:
Y
result:
ok "Y"
Test #12:
score: 0
Accepted
time: 0ms
memory: 3732kb
input:
1 2 1 ** -
output:
Y
result:
ok "Y"
Test #13:
score: 0
Accepted
time: 0ms
memory: 3672kb
input:
1 2 2 -- --
output:
Y
result:
ok "Y"
Test #14:
score: 0
Accepted
time: 0ms
memory: 3708kb
input:
1 2 3 ** ---
output:
Y
result:
ok "Y"
Test #15:
score: 0
Accepted
time: 0ms
memory: 3664kb
input:
1 3 1 --* -
output:
Y
result:
ok "Y"
Test #16:
score: 0
Accepted
time: 1ms
memory: 3668kb
input:
1 3 2 *** -*
output:
Y
result:
ok "Y"
Test #17:
score: 0
Accepted
time: 0ms
memory: 3664kb
input:
1 3 3 --- ---
output:
Y
result:
ok "Y"
Test #18:
score: 0
Accepted
time: 0ms
memory: 3712kb
input:
2 1 1 * * - -
output:
Y
result:
ok "Y"
Test #19:
score: 0
Accepted
time: 0ms
memory: 3652kb
input:
2 1 2 - -- * *-
output:
Y
result:
ok "Y"
Test #20:
score: 0
Accepted
time: 0ms
memory: 3668kb
input:
2 1 3 * --* * --*
output:
Y
result:
ok "Y"
Test #21:
score: 0
Accepted
time: 0ms
memory: 3620kb
input:
2 2 1 ** - ** *
output:
Y
result:
ok "Y"
Test #22:
score: 0
Accepted
time: 1ms
memory: 3668kb
input:
2 2 2 ** ** ** **
output:
Y
result:
ok "Y"
Test #23:
score: 0
Accepted
time: 0ms
memory: 3708kb
input:
2 2 3 -- --- ** ***
output:
Y
result:
ok "Y"
Test #24:
score: 0
Accepted
time: 0ms
memory: 3696kb
input:
2 3 1 *** - *-- -
output:
Y
result:
ok "Y"
Test #25:
score: 0
Accepted
time: 0ms
memory: 3684kb
input:
2 3 2 *** -* *** -*
output:
Y
result:
ok "Y"
Test #26:
score: 0
Accepted
time: 0ms
memory: 3624kb
input:
2 3 3 *** *-* -** ---
output:
Y
result:
ok "Y"
Test #27:
score: 0
Accepted
time: 0ms
memory: 3720kb
input:
3 1 1 * * * - - -
output:
Y
result:
ok "Y"
Test #28:
score: 0
Accepted
time: 0ms
memory: 3668kb
input:
3 1 2 * -* * *- * **
output:
Y
result:
ok "Y"
Test #29:
score: 0
Accepted
time: 0ms
memory: 3712kb
input:
3 1 3 * -** - --- * **-
output:
Y
result:
ok "Y"
Test #30:
score: 0
Accepted
time: 0ms
memory: 3624kb
input:
3 2 1 ** * ** - -- -
output:
Y
result:
ok "Y"
Test #31:
score: 0
Accepted
time: 0ms
memory: 3676kb
input:
3 2 2 ** *- -* -- ** --
output:
Y
result:
ok "Y"
Test #32:
score: 0
Accepted
time: 0ms
memory: 3624kb
input:
3 2 3 ** -** ** --* -* ---
output:
Y
result:
ok "Y"
Test #33:
score: 0
Accepted
time: 0ms
memory: 3676kb
input:
3 3 1 *** * *-* - *** *
output:
Y
result:
ok "Y"
Test #34:
score: 0
Accepted
time: 0ms
memory: 3676kb
input:
3 3 2 *** -- *** *- *** *-
output:
Y
result:
ok "Y"
Test #35:
score: 0
Accepted
time: 0ms
memory: 3616kb
input:
3 3 3 *** -*- *** *-* *** *-*
output:
Y
result:
ok "Y"
Test #36:
score: 0
Accepted
time: 1ms
memory: 3668kb
input:
1 1 2 - *-
output:
N
result:
ok "N"
Test #37:
score: 0
Accepted
time: 0ms
memory: 3764kb
input:
1 1 3 - --*
output:
N
result:
ok "N"
Test #38:
score: 0
Accepted
time: 0ms
memory: 3764kb
input:
1 2 1 *- *
output:
N
result:
ok "N"
Test #39:
score: 0
Accepted
time: 1ms
memory: 3684kb
input:
1 2 2 -- *-
output:
N
result:
ok "N"
Test #40:
score: 0
Accepted
time: 0ms
memory: 3628kb
input:
1 2 3 -- -**
output:
N
result:
ok "N"
Test #41:
score: 0
Accepted
time: 0ms
memory: 3736kb
input:
1 3 1 -*- *
output:
N
result:
ok "N"
Test #42:
score: 0
Accepted
time: 1ms
memory: 3768kb
input:
1 3 2 --* **
output:
N
result:
ok "N"
Test #43:
score: 0
Accepted
time: 1ms
memory: 3716kb
input:
1 3 3 --- **-
output:
N
result:
ok "N"
Test #44:
score: 0
Accepted
time: 0ms
memory: 3672kb
input:
2 1 1 - * * -
output:
N
result:
ok "N"
Test #45:
score: 0
Accepted
time: 0ms
memory: 3712kb
input:
2 1 2 - *- - *-
output:
N
result:
ok "N"
Test #46:
score: 0
Accepted
time: 0ms
memory: 3720kb
input:
2 1 3 - *-- - ***
output:
N
result:
ok "N"
Test #47:
score: 0
Accepted
time: 1ms
memory: 3672kb
input:
2 2 1 -* * *- *
output:
N
result:
ok "N"
Test #48:
score: 0
Accepted
time: 0ms
memory: 3628kb
input:
2 2 2 -- ** ** --
output:
N
result:
ok "N"
Test #49:
score: 0
Accepted
time: 0ms
memory: 3684kb
input:
2 2 3 *- --- *- ***
output:
N
result:
ok "N"
Test #50:
score: 0
Accepted
time: 0ms
memory: 3620kb
input:
2 3 1 --* * *** *
output:
N
result:
ok "N"
Test #51:
score: 0
Accepted
time: 0ms
memory: 3668kb
input:
2 3 2 *** -* *-- **
output:
N
result:
ok "N"
Test #52:
score: 0
Accepted
time: 0ms
memory: 3668kb
input:
2 3 3 -** --* *-* ---
output:
N
result:
ok "N"
Test #53:
score: 0
Accepted
time: 1ms
memory: 3716kb
input:
3 1 1 - * * * - *
output:
N
result:
ok "N"
Test #54:
score: 0
Accepted
time: 1ms
memory: 3632kb
input:
3 1 2 * ** * ** - **
output:
N
result:
ok "N"
Test #55:
score: 0
Accepted
time: 0ms
memory: 3684kb
input:
3 1 3 * **- - *-* - ***
output:
N
result:
ok "N"
Test #56:
score: 0
Accepted
time: 0ms
memory: 3608kb
input:
3 2 1 -- * ** * -- *
output:
N
result:
ok "N"
Test #57:
score: 0
Accepted
time: 0ms
memory: 3612kb
input:
3 2 2 ** *- -- ** -- **
output:
N
result:
ok "N"
Test #58:
score: 0
Accepted
time: 0ms
memory: 3676kb
input:
3 2 3 ** --- -* -*- ** --*
output:
N
result:
ok "N"
Test #59:
score: 0
Accepted
time: 0ms
memory: 3680kb
input:
3 3 1 *-- * **- * *-* *
output:
N
result:
ok "N"
Test #60:
score: 0
Accepted
time: 0ms
memory: 3624kb
input:
3 3 2 *** ** **- ** --* **
output:
N
result:
ok "N"
Test #61:
score: 0
Accepted
time: 0ms
memory: 3664kb
input:
3 3 3 **- --* --- --* -** *--
output:
N
result:
ok "N"
Test #62:
score: 0
Accepted
time: 0ms
memory: 3612kb
input:
5 9 8 ********* *-*****- *-****-** -------- ********* -*---*** ********* -****-** **-***-*- --------
output:
Y
result:
ok "Y"
Test #63:
score: 0
Accepted
time: 0ms
memory: 3728kb
input:
3 5 2 ***-- -- *--** -- ***** -*
output:
Y
result:
ok "Y"
Test #64:
score: 0
Accepted
time: 0ms
memory: 3632kb
input:
5 1 8 * -**-**-- - -------- - -------- * ****-*** * --**-*--
output:
Y
result:
ok "Y"
Test #65:
score: 0
Accepted
time: 1ms
memory: 3632kb
input:
6 2 2 ** ** -* -- ** *- -- -- -* -- ** --
output:
Y
result:
ok "Y"
Test #66:
score: 0
Accepted
time: 1ms
memory: 3684kb
input:
7 9 3 --*----** --- ********* --* -*-----*- --- ********* **- ------*** --- *-*---*-* --- ********* ---
output:
Y
result:
ok "Y"
Test #67:
score: 0
Accepted
time: 0ms
memory: 3628kb
input:
2 3 7 --* --***-- -** -******
output:
N
result:
ok "N"
Test #68:
score: 0
Accepted
time: 0ms
memory: 3716kb
input:
8 9 9 ***-****- ********* *---*-*-- **-**-*** ***-***-- -*-*---*- *-***-*-* *---*--** ----****- ---****-- -**--**-* --------- *-*-****- --*------ **-**---- ----*---*
output:
N
result:
ok "N"
Test #69:
score: 0
Accepted
time: 0ms
memory: 3716kb
input:
8 7 3 ***-*-* *-- ******* *-- **-**-* *-* ----*** *** -****** -*- -*--*-* --- *-**--* **- *----*- **-
output:
N
result:
ok "N"
Test #70:
score: 0
Accepted
time: 0ms
memory: 3744kb
input:
9 6 7 *-*-** **-*-** **-**- ------- ----** *---*-* ****** **-*-*- ****** --**-*- ------ ------- *--*** **-*-** ---**- *-***-- -*-*-* --*--*-
output:
N
result:
ok "N"
Test #71:
score: 0
Accepted
time: 0ms
memory: 3612kb
input:
3 10 9 *--**-*--- --------- --***----- --------- ---**-*-*- -****-*-*
output:
N
result:
ok "N"
Test #72:
score: 0
Accepted
time: 0ms
memory: 3704kb
input:
92 47 43 -***-****-*---*--*----**-**---*-----**-*--***-* ------------------------------------------- ***--**-***-*-*---*-*--***-*-----*--*-*-******- ------------------------------------------- -*--*****-----*-*-*---**--****-*-*-*---**-*--*- ------------------------------------------- *****--*---*--*...
output:
Y
result:
ok "Y"
Test #73:
score: 0
Accepted
time: 1ms
memory: 3712kb
input:
4 31 97 ******************************* *--*---**---*-***---*-----*-*----*------**--*--*-----*-*-**---*-***-*-**---***---**------**-**--- *-**-*-*-*--**--------**-----*- ------------------------------------------------------------------------------------------------- ******************************* ...
output:
Y
result:
ok "Y"
Test #74:
score: 0
Accepted
time: 1ms
memory: 3680kb
input:
65 38 34 ************************************** *--*--***---*-*-****-*-*-****---*- ***-****-****----**-*--*---*--*-*---*- ---------------------------------- *-*---**-**---*-***--**---****--****-- ---------------------------------- ----*-***--*--****-**-*----*-***---*-* ------------------------------...
output:
Y
result:
ok "Y"
Test #75:
score: 0
Accepted
time: 0ms
memory: 3720kb
input:
70 19 82 **---*****---*-***- ---------------------------------------------------------------------------------- ******************* **-*---*---**----*-*-*-*----*--***------*-***----**----*-------*-**---***-*--*-**- ******************* ****---*--****---*----*-*--**-**-*-----*--*--*-**-**-**-----*****...
output:
Y
result:
ok "Y"
Test #76:
score: 0
Accepted
time: 0ms
memory: 3608kb
input:
16 48 65 --*-******-**-*--*--**--****-*****-**--*---**--* ----------------------------------------------------------------- -**-******---*---**-*-*--**-*-*****------*--**** ----------------------------------------------------------------- ************************************************ *-*-*-*-****...
output:
Y
result:
ok "Y"
Test #77:
score: 0
Accepted
time: 1ms
memory: 3692kb
input:
53 83 13 -*******-******-******-*****-*******-*******-*****-******-***-******-*******--***** **-----*---** *********************************************************************************** **--***-*-*-- *-*--***-***-*-**---*--***-*--*-*-****----*-***--*--*--**--****--*-*-****-*-*---*-- -----------...
output:
N
result:
ok "N"
Test #78:
score: 0
Accepted
time: 0ms
memory: 3716kb
input:
58 48 17 --****----*--**-*********--*-*-***-**---**---*-- -**--**--*-*-*-** ----**-**-**--*-*---***-**-**--*--**--*****-***- -----*-------*--- ---*--*-----******-*-**-*--*-*--*-*-**-****-**-- ****-*********-** ***-***-*-*-*-**--***--*******--**-**-*--**---** *****-*-----*---- -***-**-**-*---****-***...
output:
N
result:
ok "N"
Test #79:
score: 0
Accepted
time: 0ms
memory: 3676kb
input:
18 81 94 --*--***--**-**-*-****-*--*---********--*-****-**-*****-*---**-*-**-**--**--****- --*--**----*-*-**--*---**---***---*-**-*-***------------**---*-****-*-*---***---**--**--**---* --**-*-*-****---**-*-**-*-*--*-*---*--**--**-**---**-*-**--*-**-*--*---***-*--*-- --------------------------------...
output:
N
result:
ok "N"
Test #80:
score: 0
Accepted
time: 0ms
memory: 3700kb
input:
97 97 57 ************************************************************************************************* -**-*---**-*--*-**-*-*-*-*-*-***----***---*-**--*---*-**- *****************-**************-***************************-****-**********************--****-** *-*---**-*****-----*--**--------**-**...
output:
N
result:
ok "N"
Test #81:
score: 0
Accepted
time: 0ms
memory: 3636kb
input:
73 53 12 *-****--*-*----*--****--**-****-******-***-***-***-** -*----**--*- ******-*********-*-----*---***--**-*---**--****--**** ***-*-****** **-*--*---**-**-********---*---*-*****-*-*---*-****-* *-*-**-**-*- ***************************************************** ***--*-*---- *-***-**-*-**-*--*----*...
output:
N
result:
ok "N"
Test #82:
score: 0
Accepted
time: 1ms
memory: 3724kb
input:
79 224 356 -***--*****--**-*-*-**--*-***--*-----**-*-**-**-**-----*--*---*-****----**-*-*--*--***--**--*-**--**-*-*--*-------*******------*--**--****-*--*-*-***-*-*-*-**---*-*-*-*--*-***-***-*******-***-*-**-****---*--*-*-****-*--**-** ----------------------------------------------------------------...
output:
Y
result:
ok "Y"
Test #83:
score: 0
Accepted
time: 1ms
memory: 3728kb
input:
126 467 487 ***----*--***-**-*-*--*--*-*--*---**-----*******---***-***---********-****---*----*-*-*-*-*-*-**-*-***-*-*--*-****-**-*-***--*******-*-***-**-**-*--*****-*-*-***-*-*--*-----****-****--------*-*----*--****--**-*****--***--**-*-*-*----**--*****-**-*-*----****-**-*---*--*--*----**-**-*-****...
output:
Y
result:
ok "Y"
Test #84:
score: 0
Accepted
time: 1ms
memory: 3760kb
input:
171 262 498 *-****-*-*--*******--*-*--********-**-*******-*--*--*-*-**---**---****---***-**-*-**-----******--**---******-******--------*-*-**-**--**--*-*--**-**-*---**-**--**--*****-*-*-**-*---**-*--*****-**-------**---**-****-*****-*-***----**-*-*******---****--**-***-*-** -------------------------...
output:
Y
result:
ok "Y"
Test #85:
score: 0
Accepted
time: 1ms
memory: 3840kb
input:
299 263 466 ---**-*--*-**----**-*-**-**---*--*------***--**---**---***-*--*-*--------*--***-****-*------**---*******------**----*---*-**-****-*--*--***-*--*-*---*-*--*****-*-----*-**---**---*****----**--*-*--**--******--**-*---*--**-*-****--**-*-***---*-*--*-****--*--------* ------------------------...
output:
Y
result:
ok "Y"
Test #86:
score: 0
Accepted
time: 0ms
memory: 3872kb
input:
398 94 481 -****--*--***----*--*--*-**-*-***--*--****-***---*-**-**-**-**--**--****-*-*--***-*****-*--**- --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------...
output:
Y
result:
ok "Y"
Test #87:
score: 0
Accepted
time: 1ms
memory: 4184kb
input:
457 428 442 -*-**---*-**--*-********-----*---*-*---*--*****-***--**-*-***-**--**-****-*--*-------**-***-*-**---***--***---***-*--*--*-**-**-****----**-*---*****-**-*--**-**----*-*******--**----*-*-**-*-**-*-****--*--*--*-*-*-**-*****-***-*****--**---**-*---*-*--------*------**-*--***----****-*-*-*--...
output:
N
result:
ok "N"
Test #88:
score: 0
Accepted
time: 1ms
memory: 3796kb
input:
391 102 316 ****---***-***-----*--*****-*-*--*****--*--*-**---**-***---*---**---*--***-***-*--*-*-*--*-----****--- -***--**-*--*--**---*-*-*--*******-----**--*-*---*---*-*-*-*--*-*-*--*--*****-*****----**--***---*--*-----**-*-*-**--*-*-*-*-**--*----*--*-*-*-***-*-**--*-*--**-***---*----**-*--*-*-***...
output:
N
result:
ok "N"
Test #89:
score: 0
Accepted
time: 1ms
memory: 3816kb
input:
285 444 228 ---*-***--**-*-*--***-****-*-*-*--**-*-----**-*---***---*---***--*--**-*---*-*-*-**--*-*----***-------***----*-***------*---*--**---**-*-**-*-*****------*----*----*--****--*--*-*-***----*--*-***---***---*--**-*---------*---*---*****-*-*-****--**-*-**-*-*-*------***---*---**--****-***---*...
output:
N
result:
ok "N"
Test #90:
score: 0
Accepted
time: 0ms
memory: 3880kb
input:
422 14 427 -*--**-*-*-*-* ---------*-*-**--*-*-*--**---*-*-**--*-**--*-*-*-*-******-**--***---*********-*--*---*----***---**------*-****---*-**-*-*----****--**-*----*****-*****-*-***-----***-*---**--**-*--***-*--*--**--*****----*-*****----**-*-*-*--**------***-*----**-*--*--*---*-**--*--****-***--*-...
output:
N
result:
ok "N"
Test #91:
score: 0
Accepted
time: 1ms
memory: 3796kb
input:
132 490 347 --****--*--*-*--*--*****--***--*--**-**--*---*-**-*----***--*-*-**-**---*-*--**----*-**----*-*-----*----*---*-**-*---*--**-*-*---******-***-**-**--------*-----**-**----*-*--*--*-****-*--*-----*---*-*--*-*--*-**--*-***--**-******-**-*-*-*-*--******-****-****------*--*---*****-*-**-**-----...
output:
N
result:
ok "N"
Test #92:
score: 0
Accepted
time: 2ms
memory: 4380kb
input:
434 573 1000 *-**--***-*-*-*-*-*---*-*------***-**-*-**-*****--*-*-------*--****--*-*---*--**-******-----*-*--***-*--*-----*---------*---***-*-*-****-*-*---*-***---*****-*-**-*--*-*--***-*-*--**-*****-*-***-*-*--*--****--**-*----*--***-*-*-*--**--***-******-*-*--*---*--*-**-*---****----*-*-----*-*-*...
output:
Y
result:
ok "Y"
Test #93:
score: 0
Accepted
time: 0ms
memory: 4260kb
input:
254 1000 985 ***********************************************************************************************************************************************************************************************************************************************************************************************...
output:
Y
result:
ok "Y"
Test #94:
score: 0
Accepted
time: 1ms
memory: 4048kb
input:
1000 222 170 **-*-*------**-***-----**--***--*-***-*--**-****-******-**--*----****-**-**-*-**---**-*-*-*--*--*-****---*------*-****---*------***-***-**-*-**----*-*--***-----*--*-*--*-**-*-*-*-******---*----*****--*-*-**-*--*-*-*-****** ----------------------------------------------------------------...
output:
Y
result:
ok "Y"
Test #95:
score: 0
Accepted
time: 3ms
memory: 5760kb
input:
1000 1000 1000 -*--**-*---*-----*-*-----*-**-***-**---**--**---*-*--*----*-***----*-*-*-****-*-*-**-*--*-***-******--*----*----**-**-**-*-**---***----***--**--*-----****-*--*-*-**---***--*---*---**-***-*---**-*--*-*-*---**----*--*----*----**-**-*-******-*--****---*-----*-*--****-*-*--*-*******--****...
output:
Y
result:
ok "Y"
Test #96:
score: 0
Accepted
time: 2ms
memory: 4376kb
input:
474 506 1000 *-*****-*--*--**-****--*-*-**-*--***---*---*-*----------**---*---*----**--***-*--*---****-*-*--*-**-****--**-**-*-***-***---**------***----*----*-*--*-*-****---*--*----*-*----*--*-***-*-*-----***---*-*-*---****-***-***-**-*-*-----*--*-*-***---*****-**-*-**-*-**-*-**--*---**-*--*---**-**...
output:
N
result:
ok "N"
Test #97:
score: 0
Accepted
time: 0ms
memory: 3952kb
input:
132 1000 628 ----**-*-****-----****--*-*---**--*--*-*-*-------*--*----**---*--*-**-*---*-*--**-*--*---*----*--*-***-*----*-**--***--**---*-*--***-*-***--**--*---**-****---**--**-*-**---*-****---*-------***---*-***---****-----*-**---**---****-*----*-**---*********-*******-------****--**--***-*-*-----...
output:
N
result:
ok "N"
Test #98:
score: 0
Accepted
time: 0ms
memory: 5344kb
input:
1000 669 949 *--******-*-*----*****--*----**-*-****---*-----*-*---*--*-*--*-*-*-*--***-**-*--*-*-****--**-******-***-***-*-**---**---****---*--*--*----*---***----**-****-*-*--*--**----**----------**-***-***-*-****-*----*-**-*****--***--**--*****-*****--**-*--*--***-**--*--*---****--*-*--*-**-**--*--...
output:
N
result:
ok "N"
Test #99:
score: 0
Accepted
time: 3ms
memory: 5716kb
input:
1000 1000 1000 *********************************************************************************************************************************************************************************************************************************************************************************************...
output:
N
result:
ok "N"
Extra Test:
score: 0
Extra Test Passed