QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#594287#8516. LED Matrixishrak26AC ✓51ms4104kbC++173.8kb2024-09-27 21:00:132024-09-27 21:00:14

Judging History

你现在查看的是最新测评结果

  • [2024-09-27 21:00:14]
  • 评测
  • 测评结果:AC
  • 用时:51ms
  • 内存:4104kb
  • [2024-09-27 21:00:13]
  • 提交

answer

#include <bits/stdc++.h>

using namespace std;

#define FASTIO ios::sync_with_stdio(false); cin.tie(0)

#define PB push_back

#define SZ 200005

#define all(x) (x).begin(), (x).end()
#define rall(x) (x).rbegin(), (x).rend()

#define endl '\n'

typedef long long ll;
typedef long double ld;
typedef vector<int> vi;
typedef vector<ll> vll;
typedef pair<int, int> pii;
typedef pair<int, ll> pil;
typedef pair<ll, int> pli;
typedef pair<ll, ll> pll;
typedef vector<pii> vpii;
typedef vector<pil> vpil;
typedef vector<pli> vpli;
typedef vector<pll> vpll;
typedef vector<vi> vvi;
typedef vector<bool> vbl;
typedef vector<string> vst;

// ordered_set
// #include <ext/pb_ds/assoc_container.hpp>
// #include <ext/pb_ds/tree_policy.hpp>
//using namespace __gnu_pbds;
// template<class T> using ordered_set =tree<T, null_type, less<T>, rb_tree_tag,tree_order_statistics_node_update>;
// template<class T> using ordered_multiset =tree<T, null_type, less_equal<T>, rb_tree_tag,tree_order_statistics_node_update>;

/* debugger begin */
#define error(args...) { string _s = #args; replace(_s.begin(), _s.end(), ',', ' '); stringstream _ss(_s); istream_iterator<string> _it(_ss); err(_it, args); }

void __print(int x) {cerr << x;}
void __print(long x) {cerr << x;}
void __print(long long x) {cerr << x;}
void __print(unsigned x) {cerr << x;}
void __print(unsigned long x) {cerr << x;}
void __print(unsigned long long x) {cerr << x;}
void __print(float x) {cerr << x;}
void __print(double x) {cerr << x;}
void __print(long double x) {cerr << x;}
void __print(char x) {cerr << '\'' << x << '\'';}
void __print(const char *x) {cerr << '"' << x << '"';}
void __print(const string &x) {cerr << '"' << x << '"';}
void __print(bool x) {cerr << (x ? "true" : "false");}

template<typename T, typename V>
void __print(const pair<T, V> &x) {cerr << '{'; __print(x.first); cerr << ','; __print(x.second); cerr << '}';}
template<typename T, typename V, typename Z>
void __print(const tuple<T, V, Z> &x) {cerr << '{'; __print(get<0>(x)); cerr << ','; __print(get<1>(x)); cerr << ','; __print(get<2>(x)); cerr << '}';}
template<typename T>
void __print(const T &x) {int f = 0; cerr << '{'; for (auto &i : x) cerr << (f++ ? "," : ""), __print(i); cerr << "}";}
void _print() {cerr << "]\n";}
template <typename T, typename... V>
void _print(T t, V... v) {__print(t); if (sizeof...(v)) cerr << ", "; _print(v...);}

void err(istream_iterator<string> it) {
    cerr << '\n';
}
template<typename T, typename... Args>
void err(istream_iterator<string> it, T a, Args... args) {
    cerr << *it << "=";
    __print(a);
    cerr << ' ';
    err(++it, args...);
}

/* debugger end */

//const ll MOD = 1000000007;

const int K = 1000;

void solve(int tt) {
    int r, c, k;
    cin >> r >> c >> k;
    vector<bitset<K>> bs(c), bs2(k);
    bitset<K> b;
    for (int i = 0; i < r; ++i) {
        string s, t;
        cin >> s >> t;
        for (int j = 0; j < c; ++j) {
            if (s[j] == '*') {
                bs[j][i] = 0;
            }
            else {
                bs[j][i] = 1;
            }
        }
        for (int j = 0; j < k; ++j) {
            if (t[j] == '*') {
                bs2[j][i] = 1;
            }
            else {
                bs2[j][i] = 0;
            }
        }
    }
    bool ok = 1;
    for (int i = 0; i < k && ok; ++i) {
        for (int j = 0; j < c; ++j) {
            b = (bs[j] & bs2[i]);
            if (b.count() > 0) {
                ok = 0;
                break;
            }
        }
    }
    cout << (ok ? "Y" : "N") << endl;
}

int main() {
    FASTIO;
    int tc = 1;
    // cin >> tc;
    for (int tt = 1; tt <= tc; tt++)
    {
        solve(tt);
    }
    return 0;
}

/*



*/

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 1ms
memory: 3816kb

input:

6 6 6
****** --*---
****** -**---
****** ******
****** ******
****** -**---
*****- --*---

output:

N

result:

ok "N"

Test #2:

score: 0
Accepted
time: 1ms
memory: 3528kb

input:

2 4 6
**** ------
***- *-----

output:

N

result:

ok "N"

Test #3:

score: 0
Accepted
time: 1ms
memory: 3608kb

input:

2 6 4
****** ****
*-**-* ----

output:

Y

result:

ok "Y"

Test #4:

score: 0
Accepted
time: 0ms
memory: 3596kb

input:

1 1 1
* *

output:

Y

result:

ok "Y"

Test #5:

score: 0
Accepted
time: 0ms
memory: 3592kb

input:

1 1 1
* -

output:

Y

result:

ok "Y"

Test #6:

score: 0
Accepted
time: 0ms
memory: 3592kb

input:

1 1 1
- *

output:

N

result:

ok "N"

Test #7:

score: 0
Accepted
time: 0ms
memory: 3612kb

input:

1 1 1
- -

output:

Y

result:

ok "Y"

Test #8:

score: 0
Accepted
time: 1ms
memory: 3564kb

input:

28 120 84
*-***********-***********-***********-***********-***********-***********-***********-***********-***********-********** *------**----**------**----**------**----**------**----**------**----**------**----*
******-***********-***********-***********-***********-***********-***********-*****...

output:

N

result:

ok "N"

Test #9:

score: 0
Accepted
time: 2ms
memory: 3856kb

input:

40 154 168
********************************************************************************************************************************************************** *----**----**----**----**----**----**----**----**----**----**----**----**----**----**----**----**----**----**----**----**----**----**-...

output:

Y

result:

ok "Y"

Test #10:

score: 0
Accepted
time: 0ms
memory: 3812kb

input:

1 1 2
* -*

output:

Y

result:

ok "Y"

Test #11:

score: 0
Accepted
time: 0ms
memory: 3480kb

input:

1 1 3
* -*-

output:

Y

result:

ok "Y"

Test #12:

score: 0
Accepted
time: 0ms
memory: 3520kb

input:

1 2 1
** -

output:

Y

result:

ok "Y"

Test #13:

score: 0
Accepted
time: 0ms
memory: 3528kb

input:

1 2 2
-- --

output:

Y

result:

ok "Y"

Test #14:

score: 0
Accepted
time: 0ms
memory: 3748kb

input:

1 2 3
** ---

output:

Y

result:

ok "Y"

Test #15:

score: 0
Accepted
time: 0ms
memory: 3528kb

input:

1 3 1
--* -

output:

Y

result:

ok "Y"

Test #16:

score: 0
Accepted
time: 1ms
memory: 3524kb

input:

1 3 2
*** -*

output:

Y

result:

ok "Y"

Test #17:

score: 0
Accepted
time: 0ms
memory: 3524kb

input:

1 3 3
--- ---

output:

Y

result:

ok "Y"

Test #18:

score: 0
Accepted
time: 0ms
memory: 3548kb

input:

2 1 1
* *
- -

output:

Y

result:

ok "Y"

Test #19:

score: 0
Accepted
time: 0ms
memory: 3512kb

input:

2 1 2
- --
* *-

output:

Y

result:

ok "Y"

Test #20:

score: 0
Accepted
time: 0ms
memory: 3596kb

input:

2 1 3
* --*
* --*

output:

Y

result:

ok "Y"

Test #21:

score: 0
Accepted
time: 0ms
memory: 3528kb

input:

2 2 1
** -
** *

output:

Y

result:

ok "Y"

Test #22:

score: 0
Accepted
time: 0ms
memory: 3592kb

input:

2 2 2
** **
** **

output:

Y

result:

ok "Y"

Test #23:

score: 0
Accepted
time: 0ms
memory: 3616kb

input:

2 2 3
-- ---
** ***

output:

Y

result:

ok "Y"

Test #24:

score: 0
Accepted
time: 1ms
memory: 3620kb

input:

2 3 1
*** -
*-- -

output:

Y

result:

ok "Y"

Test #25:

score: 0
Accepted
time: 1ms
memory: 3544kb

input:

2 3 2
*** -*
*** -*

output:

Y

result:

ok "Y"

Test #26:

score: 0
Accepted
time: 1ms
memory: 3528kb

input:

2 3 3
*** *-*
-** ---

output:

Y

result:

ok "Y"

Test #27:

score: 0
Accepted
time: 1ms
memory: 3780kb

input:

3 1 1
* *
* -
- -

output:

Y

result:

ok "Y"

Test #28:

score: 0
Accepted
time: 0ms
memory: 3588kb

input:

3 1 2
* -*
* *-
* **

output:

Y

result:

ok "Y"

Test #29:

score: 0
Accepted
time: 1ms
memory: 3596kb

input:

3 1 3
* -**
- ---
* **-

output:

Y

result:

ok "Y"

Test #30:

score: 0
Accepted
time: 1ms
memory: 3608kb

input:

3 2 1
** *
** -
-- -

output:

Y

result:

ok "Y"

Test #31:

score: 0
Accepted
time: 0ms
memory: 3748kb

input:

3 2 2
** *-
-* --
** --

output:

Y

result:

ok "Y"

Test #32:

score: 0
Accepted
time: 1ms
memory: 3780kb

input:

3 2 3
** -**
** --*
-* ---

output:

Y

result:

ok "Y"

Test #33:

score: 0
Accepted
time: 1ms
memory: 3552kb

input:

3 3 1
*** *
*-* -
*** *

output:

Y

result:

ok "Y"

Test #34:

score: 0
Accepted
time: 1ms
memory: 3584kb

input:

3 3 2
*** --
*** *-
*** *-

output:

Y

result:

ok "Y"

Test #35:

score: 0
Accepted
time: 1ms
memory: 3548kb

input:

3 3 3
*** -*-
*** *-*
*** *-*

output:

Y

result:

ok "Y"

Test #36:

score: 0
Accepted
time: 1ms
memory: 3524kb

input:

1 1 2
- *-

output:

N

result:

ok "N"

Test #37:

score: 0
Accepted
time: 1ms
memory: 3808kb

input:

1 1 3
- --*

output:

N

result:

ok "N"

Test #38:

score: 0
Accepted
time: 1ms
memory: 3536kb

input:

1 2 1
*- *

output:

N

result:

ok "N"

Test #39:

score: 0
Accepted
time: 1ms
memory: 3516kb

input:

1 2 2
-- *-

output:

N

result:

ok "N"

Test #40:

score: 0
Accepted
time: 1ms
memory: 3596kb

input:

1 2 3
-- -**

output:

N

result:

ok "N"

Test #41:

score: 0
Accepted
time: 1ms
memory: 3536kb

input:

1 3 1
-*- *

output:

N

result:

ok "N"

Test #42:

score: 0
Accepted
time: 1ms
memory: 3780kb

input:

1 3 2
--* **

output:

N

result:

ok "N"

Test #43:

score: 0
Accepted
time: 1ms
memory: 3528kb

input:

1 3 3
--- **-

output:

N

result:

ok "N"

Test #44:

score: 0
Accepted
time: 1ms
memory: 3608kb

input:

2 1 1
- *
* -

output:

N

result:

ok "N"

Test #45:

score: 0
Accepted
time: 0ms
memory: 3824kb

input:

2 1 2
- *-
- *-

output:

N

result:

ok "N"

Test #46:

score: 0
Accepted
time: 1ms
memory: 3812kb

input:

2 1 3
- *--
- ***

output:

N

result:

ok "N"

Test #47:

score: 0
Accepted
time: 1ms
memory: 3552kb

input:

2 2 1
-* *
*- *

output:

N

result:

ok "N"

Test #48:

score: 0
Accepted
time: 1ms
memory: 3524kb

input:

2 2 2
-- **
** --

output:

N

result:

ok "N"

Test #49:

score: 0
Accepted
time: 1ms
memory: 3592kb

input:

2 2 3
*- ---
*- ***

output:

N

result:

ok "N"

Test #50:

score: 0
Accepted
time: 0ms
memory: 3588kb

input:

2 3 1
--* *
*** *

output:

N

result:

ok "N"

Test #51:

score: 0
Accepted
time: 0ms
memory: 3612kb

input:

2 3 2
*** -*
*-- **

output:

N

result:

ok "N"

Test #52:

score: 0
Accepted
time: 1ms
memory: 3784kb

input:

2 3 3
-** --*
*-* ---

output:

N

result:

ok "N"

Test #53:

score: 0
Accepted
time: 0ms
memory: 3828kb

input:

3 1 1
- *
* *
- *

output:

N

result:

ok "N"

Test #54:

score: 0
Accepted
time: 0ms
memory: 3596kb

input:

3 1 2
* **
* **
- **

output:

N

result:

ok "N"

Test #55:

score: 0
Accepted
time: 0ms
memory: 3764kb

input:

3 1 3
* **-
- *-*
- ***

output:

N

result:

ok "N"

Test #56:

score: 0
Accepted
time: 0ms
memory: 3816kb

input:

3 2 1
-- *
** *
-- *

output:

N

result:

ok "N"

Test #57:

score: 0
Accepted
time: 0ms
memory: 3824kb

input:

3 2 2
** *-
-- **
-- **

output:

N

result:

ok "N"

Test #58:

score: 0
Accepted
time: 0ms
memory: 3604kb

input:

3 2 3
** ---
-* -*-
** --*

output:

N

result:

ok "N"

Test #59:

score: 0
Accepted
time: 0ms
memory: 3808kb

input:

3 3 1
*-- *
**- *
*-* *

output:

N

result:

ok "N"

Test #60:

score: 0
Accepted
time: 0ms
memory: 3516kb

input:

3 3 2
*** **
**- **
--* **

output:

N

result:

ok "N"

Test #61:

score: 0
Accepted
time: 0ms
memory: 3536kb

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: 3744kb

input:

3 5 2
***-- --
*--** --
***** -*

output:

Y

result:

ok "Y"

Test #64:

score: 0
Accepted
time: 0ms
memory: 3768kb

input:

5 1 8
* -**-**--
- --------
- --------
* ****-***
* --**-*--

output:

Y

result:

ok "Y"

Test #65:

score: 0
Accepted
time: 0ms
memory: 3608kb

input:

6 2 2
** **
-* --
** *-
-- --
-* --
** --

output:

Y

result:

ok "Y"

Test #66:

score: 0
Accepted
time: 0ms
memory: 3552kb

input:

7 9 3
--*----** ---
********* --*
-*-----*- ---
********* **-
------*** ---
*-*---*-* ---
********* ---

output:

Y

result:

ok "Y"

Test #67:

score: 0
Accepted
time: 0ms
memory: 3780kb

input:

2 3 7
--* --***--
-** -******

output:

N

result:

ok "N"

Test #68:

score: 0
Accepted
time: 0ms
memory: 3812kb

input:

8 9 9
***-****- *********
*---*-*-- **-**-***
***-***-- -*-*---*-
*-***-*-* *---*--**
----****- ---****--
-**--**-* ---------
*-*-****- --*------
**-**---- ----*---*

output:

N

result:

ok "N"

Test #69:

score: 0
Accepted
time: 0ms
memory: 3544kb

input:

8 7 3
***-*-* *--
******* *--
**-**-* *-*
----*** ***
-****** -*-
-*--*-* ---
*-**--* **-
*----*- **-

output:

N

result:

ok "N"

Test #70:

score: 0
Accepted
time: 0ms
memory: 3528kb

input:

9 6 7
*-*-** **-*-**
**-**- -------
----** *---*-*
****** **-*-*-
****** --**-*-
------ -------
*--*** **-*-**
---**- *-***--
-*-*-* --*--*-

output:

N

result:

ok "N"

Test #71:

score: 0
Accepted
time: 0ms
memory: 3460kb

input:

3 10 9
*--**-*--- ---------
--***----- ---------
---**-*-*- -****-*-*

output:

N

result:

ok "N"

Test #72:

score: 0
Accepted
time: 1ms
memory: 3568kb

input:

92 47 43
-***-****-*---*--*----**-**---*-----**-*--***-* -------------------------------------------
***--**-***-*-*---*-*--***-*-----*--*-*-******- -------------------------------------------
-*--*****-----*-*-*---**--****-*-*-*---**-*--*- -------------------------------------------
*****--*---*--*...

output:

Y

result:

ok "Y"

Test #73:

score: 0
Accepted
time: 1ms
memory: 3768kb

input:

4 31 97
******************************* *--*---**---*-***---*-----*-*----*------**--*--*-----*-*-**---*-***-*-**---***---**------**-**---
*-**-*-*-*--**--------**-----*- -------------------------------------------------------------------------------------------------
******************************* ...

output:

Y

result:

ok "Y"

Test #74:

score: 0
Accepted
time: 0ms
memory: 3608kb

input:

65 38 34
************************************** *--*--***---*-*-****-*-*-****---*-
***-****-****----**-*--*---*--*-*---*- ----------------------------------
*-*---**-**---*-***--**---****--****-- ----------------------------------
----*-***--*--****-**-*----*-***---*-* ------------------------------...

output:

Y

result:

ok "Y"

Test #75:

score: 0
Accepted
time: 0ms
memory: 3560kb

input:

70 19 82
**---*****---*-***- ----------------------------------------------------------------------------------
******************* **-*---*---**----*-*-*-*----*--***------*-***----**----*-------*-**---***-*--*-**-
******************* ****---*--****---*----*-*--**-**-*-----*--*--*-**-**-**-----*****...

output:

Y

result:

ok "Y"

Test #76:

score: 0
Accepted
time: 1ms
memory: 3492kb

input:

16 48 65
--*-******-**-*--*--**--****-*****-**--*---**--* -----------------------------------------------------------------
-**-******---*---**-*-*--**-*-*****------*--**** -----------------------------------------------------------------
************************************************ *-*-*-*-****...

output:

Y

result:

ok "Y"

Test #77:

score: 0
Accepted
time: 0ms
memory: 3544kb

input:

53 83 13
-*******-******-******-*****-*******-*******-*****-******-***-******-*******--***** **-----*---**
*********************************************************************************** **--***-*-*--
*-*--***-***-*-**---*--***-*--*-*-****----*-***--*--*--**--****--*-*-****-*-*---*-- -----------...

output:

N

result:

ok "N"

Test #78:

score: 0
Accepted
time: 0ms
memory: 3540kb

input:

58 48 17
--****----*--**-*********--*-*-***-**---**---*-- -**--**--*-*-*-**
----**-**-**--*-*---***-**-**--*--**--*****-***- -----*-------*---
---*--*-----******-*-**-*--*-*--*-*-**-****-**-- ****-*********-**
***-***-*-*-*-**--***--*******--**-**-*--**---** *****-*-----*----
-***-**-**-*---****-***...

output:

N

result:

ok "N"

Test #79:

score: 0
Accepted
time: 0ms
memory: 3632kb

input:

18 81 94
--*--***--**-**-*-****-*--*---********--*-****-**-*****-*---**-*-**-**--**--****- --*--**----*-*-**--*---**---***---*-**-*-***------------**---*-****-*-*---***---**--**--**---*
--**-*-*-****---**-*-**-*-*--*-*---*--**--**-**---**-*-**--*-**-*--*---***-*--*-- --------------------------------...

output:

N

result:

ok "N"

Test #80:

score: 0
Accepted
time: 1ms
memory: 3844kb

input:

97 97 57
************************************************************************************************* -**-*---**-*--*-**-*-*-*-*-*-***----***---*-**--*---*-**-
*****************-**************-***************************-****-**********************--****-** *-*---**-*****-----*--**--------**-**...

output:

N

result:

ok "N"

Test #81:

score: 0
Accepted
time: 0ms
memory: 3608kb

input:

73 53 12
*-****--*-*----*--****--**-****-******-***-***-***-** -*----**--*-
******-*********-*-----*---***--**-*---**--****--**** ***-*-******
**-*--*---**-**-********---*---*-*****-*-*---*-****-* *-*-**-**-*-
***************************************************** ***--*-*----
*-***-**-*-**-*--*----*...

output:

N

result:

ok "N"

Test #82:

score: 0
Accepted
time: 4ms
memory: 3620kb

input:

79 224 356
-***--*****--**-*-*-**--*-***--*-----**-*-**-**-**-----*--*---*-****----**-*-*--*--***--**--*-**--**-*-*--*-------*******------*--**--****-*--*-*-***-*-*-*-**---*-*-*-*--*-***-***-*******-***-*-**-****---*--*-*-****-*--**-** ----------------------------------------------------------------...

output:

Y

result:

ok "Y"

Test #83:

score: 0
Accepted
time: 12ms
memory: 3644kb

input:

126 467 487
***----*--***-**-*-*--*--*-*--*---**-----*******---***-***---********-****---*----*-*-*-*-*-*-**-*-***-*-*--*-****-**-*-***--*******-*-***-**-**-*--*****-*-*-***-*-*--*-----****-****--------*-*----*--****--**-*****--***--**-*-*-*----**--*****-**-*-*----****-**-*---*--*--*----**-**-*-****...

output:

Y

result:

ok "Y"

Test #84:

score: 0
Accepted
time: 7ms
memory: 3712kb

input:

171 262 498
*-****-*-*--*******--*-*--********-**-*******-*--*--*-*-**---**---****---***-**-*-**-----******--**---******-******--------*-*-**-**--**--*-*--**-**-*---**-**--**--*****-*-*-**-*---**-*--*****-**-------**---**-****-*****-*-***----**-*-*******---****--**-***-*-** -------------------------...

output:

Y

result:

ok "Y"

Test #85:

score: 0
Accepted
time: 7ms
memory: 3716kb

input:

299 263 466
---**-*--*-**----**-*-**-**---*--*------***--**---**---***-*--*-*--------*--***-****-*------**---*******------**----*---*-**-****-*--*--***-*--*-*---*-*--*****-*-----*-**---**---*****----**--*-*--**--******--**-*---*--**-*-****--**-*-***---*-*--*-****--*--------* ------------------------...

output:

Y

result:

ok "Y"

Test #86:

score: 0
Accepted
time: 3ms
memory: 3684kb

input:

398 94 481
-****--*--***----*--*--*-**-*-***--*--****-***---*-**-**-**-**--**--****-*-*--***-*****-*--**- --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------...

output:

Y

result:

ok "Y"

Test #87:

score: 0
Accepted
time: 0ms
memory: 3744kb

input:

457 428 442
-*-**---*-**--*-********-----*---*-*---*--*****-***--**-*-***-**--**-****-*--*-------**-***-*-**---***--***---***-*--*--*-**-**-****----**-*---*****-**-*--**-**----*-*******--**----*-*-**-*-**-*-****--*--*--*-*-*-**-*****-***-*****--**---**-*---*-*--------*------**-*--***----****-*-*-*--...

output:

N

result:

ok "N"

Test #88:

score: 0
Accepted
time: 1ms
memory: 3584kb

input:

391 102 316
****---***-***-----*--*****-*-*--*****--*--*-**---**-***---*---**---*--***-***-*--*-*-*--*-----****--- -***--**-*--*--**---*-*-*--*******-----**--*-*---*---*-*-*-*--*-*-*--*--*****-*****----**--***---*--*-----**-*-*-**--*-*-*-*-**--*----*--*-*-*-***-*-**--*-*--**-***---*----**-*--*-*-***...

output:

N

result:

ok "N"

Test #89:

score: 0
Accepted
time: 1ms
memory: 3916kb

input:

285 444 228
---*-***--**-*-*--***-****-*-*-*--**-*-----**-*---***---*---***--*--**-*---*-*-*-**--*-*----***-------***----*-***------*---*--**---**-*-**-*-*****------*----*----*--****--*--*-*-***----*--*-***---***---*--**-*---------*---*---*****-*-*-****--**-*-**-*-*-*------***---*---**--****-***---*...

output:

N

result:

ok "N"

Test #90:

score: 0
Accepted
time: 0ms
memory: 3816kb

input:

422 14 427
-*--**-*-*-*-* ---------*-*-**--*-*-*--**---*-*-**--*-**--*-*-*-*-******-**--***---*********-*--*---*----***---**------*-****---*-**-*-*----****--**-*----*****-*****-*-***-----***-*---**--**-*--***-*--*--**--*****----*-*****----**-*-*-*--**------***-*----**-*--*--*---*-**--*--****-***--*-...

output:

N

result:

ok "N"

Test #91:

score: 0
Accepted
time: 1ms
memory: 3928kb

input:

132 490 347
--****--*--*-*--*--*****--***--*--**-**--*---*-**-*----***--*-*-**-**---*-*--**----*-**----*-*-----*----*---*-**-*---*--**-*-*---******-***-**-**--------*-----**-**----*-*--*--*-****-*--*-----*---*-*--*-*--*-**--*-***--**-******-**-*-*-*-*--******-****-****------*--*---*****-*-**-**-----...

output:

N

result:

ok "N"

Test #92:

score: 0
Accepted
time: 30ms
memory: 3836kb

input:

434 573 1000
*-**--***-*-*-*-*-*---*-*------***-**-*-**-*****--*-*-------*--****--*-*---*--**-******-----*-*--***-*--*-----*---------*---***-*-*-****-*-*---*-***---*****-*-**-*--*-*--***-*-*--**-*****-*-***-*-*--*--****--**-*----*--***-*-*-*--**--***-******-*-*--*---*--*-**-*---****----*-*-----*-*-*...

output:

Y

result:

ok "Y"

Test #93:

score: 0
Accepted
time: 50ms
memory: 3808kb

input:

254 1000 985
***********************************************************************************************************************************************************************************************************************************************************************************************...

output:

Y

result:

ok "Y"

Test #94:

score: 0
Accepted
time: 4ms
memory: 3652kb

input:

1000 222 170
**-*-*------**-***-----**--***--*-***-*--**-****-******-**--*----****-**-**-*-**---**-*-*-*--*--*-****---*------*-****---*------***-***-**-*-**----*-*--***-----*--*-*--*-**-*-*-*-******---*----*****--*-*-**-*--*-*-*-****** ----------------------------------------------------------------...

output:

Y

result:

ok "Y"

Test #95:

score: 0
Accepted
time: 51ms
memory: 4104kb

input:

1000 1000 1000
-*--**-*---*-----*-*-----*-**-***-**---**--**---*-*--*----*-***----*-*-*-****-*-*-**-*--*-***-******--*----*----**-**-**-*-**---***----***--**--*-----****-*--*-*-**---***--*---*---**-***-*---**-*--*-*-*---**----*--*----*----**-**-*-******-*--****---*-----*-*--****-*-*--*-*******--****...

output:

Y

result:

ok "Y"

Test #96:

score: 0
Accepted
time: 3ms
memory: 3964kb

input:

474 506 1000
*-*****-*--*--**-****--*-*-**-*--***---*---*-*----------**---*---*----**--***-*--*---****-*-*--*-**-****--**-**-*-***-***---**------***----*----*-*--*-*-****---*--*----*-*----*--*-***-*-*-----***---*-*-*---****-***-***-**-*-*-----*--*-*-***---*****-**-*-**-*-**-*-**--*---**-*--*---**-**...

output:

N

result:

ok "N"

Test #97:

score: 0
Accepted
time: 1ms
memory: 3964kb

input:

132 1000 628
----**-*-****-----****--*-*---**--*--*-*-*-------*--*----**---*--*-**-*---*-*--**-*--*---*----*--*-***-*----*-**--***--**---*-*--***-*-***--**--*---**-****---**--**-*-**---*-****---*-------***---*-***---****-----*-**---**---****-*----*-**---*********-*******-------****--**--***-*-*-----...

output:

N

result:

ok "N"

Test #98:

score: 0
Accepted
time: 6ms
memory: 4064kb

input:

1000 669 949
*--******-*-*----*****--*----**-*-****---*-----*-*---*--*-*--*-*-*-*--***-**-*--*-*-****--**-******-***-***-*-**---**---****---*--*--*----*---***----**-****-*-*--*--**----**----------**-***-***-*-****-*----*-**-*****--***--**--*****-*****--**-*--*--***-**--*--*---****--*-*--*-**-**--*--...

output:

N

result:

ok "N"

Test #99:

score: 0
Accepted
time: 8ms
memory: 3904kb

input:

1000 1000 1000
*********************************************************************************************************************************************************************************************************************************************************************************************...

output:

N

result:

ok "N"

Extra Test:

score: 0
Extra Test Passed