結果

問題 No.290 1010
ユーザー dangodango
提出日時 2023-06-16 19:35:32
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 87 bytes
コンパイル時間 451 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 59,020 KB
最終ジャッジ日時 2024-06-24 11:31:21
合計ジャッジ時間 2,529 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 42 ms
52,152 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 44 ms
52,416 KB
testcase_06 AC 43 ms
52,084 KB
testcase_07 AC 42 ms
52,764 KB
testcase_08 AC 43 ms
52,032 KB
testcase_09 AC 43 ms
52,420 KB
testcase_10 AC 42 ms
52,080 KB
testcase_11 AC 43 ms
52,448 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 42 ms
51,496 KB
testcase_15 AC 43 ms
51,820 KB
testcase_16 AC 43 ms
52,424 KB
testcase_17 AC 42 ms
52,024 KB
testcase_18 AC 43 ms
52,028 KB
testcase_19 AC 43 ms
53,240 KB
testcase_20 AC 51 ms
58,484 KB
testcase_21 AC 51 ms
58,100 KB
testcase_22 WA -
testcase_23 AC 50 ms
59,020 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
S = input()
print("YES" if N <= 4 or "00" in S or "11" in S else "NO")
0