QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#362612#8516. LED Matrixucup-team3113#AC ✓1ms5328kbC++20859b2024-03-23 16:21:092024-03-23 16:21:09

Judging History

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

  • [2024-03-23 16:21:09]
  • 评测
  • 测评结果:AC
  • 用时:1ms
  • 内存:5328kb
  • [2024-03-23 16:21:09]
  • 提交

answer

#include <bits/stdc++.h>
#define pb push_back
#define int int64_t
#define pii pair<int, int>
#define X first
#define Y second
#define all(x) (x).begin(),(x).end()
#define lb lower_bound
#define ub upper_bound

using namespace std;

const int inf = 1e18;

void p(auto A){
	for(auto e : A)cout << e << ' ';
	cout << '\n';
}

void solve(){
	int n, m, k; cin >> n >> m >> k;
	vector<string> A(n), B(n);
	for(int i = 0; i< n; i++)cin >> A[i] >> B[i];
	for(int i = 0; i< n; i++){
		int f = 0;
		for(auto e : A[i])if(e == '-')f = 1;
		if(!f)continue;
		for(auto e : B[i])if(e == '*'){
			cout << 'N';
			return;
		}
	}
	cout << 'Y';
}


signed main(){
	ios_base::sync_with_stdio(false);
	cin.tie(NULL);
	
	int t = 1;
	//cin >> t;
	while(t--)solve();
}


//freopen(".in", "r", stdin);
//freopen(".out", "w", stdout);


詳細信息

Test #1:

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

input:

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

output:

N

result:

ok "N"

Test #2:

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

input:

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

output:

N

result:

ok "N"

Test #3:

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

input:

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

output:

Y

result:

ok "Y"

Test #4:

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

input:

1 1 1
* *

output:

Y

result:

ok "Y"

Test #5:

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

input:

1 1 1
* -

output:

Y

result:

ok "Y"

Test #6:

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

input:

1 1 1
- *

output:

N

result:

ok "N"

Test #7:

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

input:

1 1 1
- -

output:

Y

result:

ok "Y"

Test #8:

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

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

input:

1 1 2
* -*

output:

Y

result:

ok "Y"

Test #11:

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

input:

1 1 3
* -*-

output:

Y

result:

ok "Y"

Test #12:

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

input:

1 2 1
** -

output:

Y

result:

ok "Y"

Test #13:

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

input:

1 2 2
-- --

output:

Y

result:

ok "Y"

Test #14:

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

input:

1 2 3
** ---

output:

Y

result:

ok "Y"

Test #15:

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

input:

1 3 1
--* -

output:

Y

result:

ok "Y"

Test #16:

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

input:

1 3 2
*** -*

output:

Y

result:

ok "Y"

Test #17:

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

input:

1 3 3
--- ---

output:

Y

result:

ok "Y"

Test #18:

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

input:

2 1 1
* *
- -

output:

Y

result:

ok "Y"

Test #19:

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

input:

2 1 2
- --
* *-

output:

Y

result:

ok "Y"

Test #20:

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

input:

2 1 3
* --*
* --*

output:

Y

result:

ok "Y"

Test #21:

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

input:

2 2 1
** -
** *

output:

Y

result:

ok "Y"

Test #22:

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

input:

2 2 2
** **
** **

output:

Y

result:

ok "Y"

Test #23:

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

input:

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

output:

Y

result:

ok "Y"

Test #24:

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

input:

2 3 1
*** -
*-- -

output:

Y

result:

ok "Y"

Test #25:

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

input:

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

output:

Y

result:

ok "Y"

Test #26:

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

input:

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

output:

Y

result:

ok "Y"

Test #27:

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

input:

3 1 1
* *
* -
- -

output:

Y

result:

ok "Y"

Test #28:

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

input:

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

output:

Y

result:

ok "Y"

Test #29:

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

input:

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

output:

Y

result:

ok "Y"

Test #30:

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

input:

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

output:

Y

result:

ok "Y"

Test #31:

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

input:

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

output:

Y

result:

ok "Y"

Test #32:

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

input:

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

output:

Y

result:

ok "Y"

Test #33:

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

input:

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

output:

Y

result:

ok "Y"

Test #34:

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

input:

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

output:

Y

result:

ok "Y"

Test #35:

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

input:

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

output:

Y

result:

ok "Y"

Test #36:

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

input:

1 1 2
- *-

output:

N

result:

ok "N"

Test #37:

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

input:

1 1 3
- --*

output:

N

result:

ok "N"

Test #38:

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

input:

1 2 1
*- *

output:

N

result:

ok "N"

Test #39:

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

input:

1 2 2
-- *-

output:

N

result:

ok "N"

Test #40:

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

input:

1 2 3
-- -**

output:

N

result:

ok "N"

Test #41:

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

input:

1 3 1
-*- *

output:

N

result:

ok "N"

Test #42:

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

input:

1 3 2
--* **

output:

N

result:

ok "N"

Test #43:

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

input:

1 3 3
--- **-

output:

N

result:

ok "N"

Test #44:

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

input:

2 1 1
- *
* -

output:

N

result:

ok "N"

Test #45:

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

input:

2 1 2
- *-
- *-

output:

N

result:

ok "N"

Test #46:

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

input:

2 1 3
- *--
- ***

output:

N

result:

ok "N"

Test #47:

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

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

input:

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

output:

N

result:

ok "N"

Test #50:

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

input:

2 3 1
--* *
*** *

output:

N

result:

ok "N"

Test #51:

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

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: 0ms
memory: 3572kb

input:

3 1 1
- *
* *
- *

output:

N

result:

ok "N"

Test #54:

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

input:

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

output:

N

result:

ok "N"

Test #55:

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

input:

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

output:

N

result:

ok "N"

Test #56:

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

input:

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

output:

N

result:

ok "N"

Test #57:

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

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

input:

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

output:

N

result:

ok "N"

Test #60:

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

input:

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

output:

N

result:

ok "N"

Test #61:

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

input:

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

output:

N

result:

ok "N"

Test #62:

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

input:

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

output:

Y

result:

ok "Y"

Test #63:

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

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: 0ms
memory: 3504kb

input:

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

output:

Y

result:

ok "Y"

Test #66:

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

input:

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

output:

Y

result:

ok "Y"

Test #67:

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

input:

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

output:

N

result:

ok "N"

Test #68:

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

input:

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

output:

N

result:

ok "N"

Test #69:

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

input:

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

output:

N

result:

ok "N"

Test #70:

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

input:

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

output:

N

result:

ok "N"

Test #71:

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

input:

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

output:

N

result:

ok "N"

Test #72:

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

input:

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

output:

Y

result:

ok "Y"

Test #73:

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

input:

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

output:

Y

result:

ok "Y"

Test #74:

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

input:

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

output:

Y

result:

ok "Y"

Test #75:

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

input:

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

output:

Y

result:

ok "Y"

Test #76:

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

input:

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

output:

Y

result:

ok "Y"

Test #77:

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

input:

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

output:

N

result:

ok "N"

Test #78:

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

input:

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

output:

N

result:

ok "N"

Test #79:

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

input:

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

output:

N

result:

ok "N"

Test #80:

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

input:

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

output:

N

result:

ok "N"

Test #81:

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

input:

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

output:

N

result:

ok "N"

Test #82:

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

input:

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

output:

Y

result:

ok "Y"

Test #83:

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

input:

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

output:

Y

result:

ok "Y"

Test #84:

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

input:

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

output:

Y

result:

ok "Y"

Test #85:

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

input:

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

output:

Y

result:

ok "Y"

Test #86:

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

input:

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

output:

Y

result:

ok "Y"

Test #87:

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

input:

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

output:

N

result:

ok "N"

Test #88:

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

input:

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

output:

N

result:

ok "N"

Test #89:

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

input:

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

output:

N

result:

ok "N"

Test #90:

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

input:

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

output:

N

result:

ok "N"

Test #91:

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

input:

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

output:

N

result:

ok "N"

Test #92:

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

input:

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

output:

Y

result:

ok "Y"

Test #93:

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

input:

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

output:

Y

result:

ok "Y"

Test #94:

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

input:

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

output:

Y

result:

ok "Y"

Test #95:

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

input:

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

output:

Y

result:

ok "Y"

Test #96:

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

input:

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

output:

N

result:

ok "N"

Test #97:

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

input:

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

output:

N

result:

ok "N"

Test #98:

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

input:

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

output:

N

result:

ok "N"

Test #99:

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

input:

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

output:

N

result:

ok "N"

Extra Test:

score: 0
Extra Test Passed