結果

問題 No.290 1010
ユーザー convexineqconvexineq
提出日時 2020-12-29 22:42:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 42 ms / 5,000 ms
コード長 87 bytes
コンパイル時間 249 ms
コンパイル使用メモリ 82,196 KB
実行使用メモリ 59,468 KB
最終ジャッジ日時 2024-10-06 05:46:38
合計ジャッジ時間 1,823 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,560 KB
testcase_01 AC 35 ms
51,868 KB
testcase_02 AC 35 ms
53,188 KB
testcase_03 AC 34 ms
53,952 KB
testcase_04 AC 32 ms
52,088 KB
testcase_05 AC 33 ms
51,812 KB
testcase_06 AC 33 ms
52,496 KB
testcase_07 AC 32 ms
52,744 KB
testcase_08 AC 33 ms
52,828 KB
testcase_09 AC 33 ms
51,960 KB
testcase_10 AC 35 ms
52,204 KB
testcase_11 AC 32 ms
51,836 KB
testcase_12 AC 35 ms
51,816 KB
testcase_13 AC 34 ms
52,664 KB
testcase_14 AC 35 ms
53,012 KB
testcase_15 AC 33 ms
53,084 KB
testcase_16 AC 33 ms
52,204 KB
testcase_17 AC 34 ms
52,556 KB
testcase_18 AC 36 ms
52,272 KB
testcase_19 AC 33 ms
52,976 KB
testcase_20 AC 39 ms
58,208 KB
testcase_21 AC 39 ms
58,528 KB
testcase_22 AC 39 ms
58,420 KB
testcase_23 AC 42 ms
59,468 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
s = input()
print("YES" if n >= 4 or "00" in s or "11" in s else "NO")
0