結果

問題 No.290 1010
ユーザー ntudantuda
提出日時 2024-01-01 16:00:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 45 ms / 5,000 ms
コード長 181 bytes
コンパイル時間 294 ms
コンパイル使用メモリ 82,344 KB
実行使用メモリ 59,932 KB
最終ジャッジ日時 2024-09-27 17:24:17
合計ジャッジ時間 2,152 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,404 KB
testcase_01 AC 40 ms
52,304 KB
testcase_02 AC 39 ms
52,212 KB
testcase_03 AC 39 ms
52,488 KB
testcase_04 AC 39 ms
52,952 KB
testcase_05 AC 39 ms
52,492 KB
testcase_06 AC 39 ms
52,460 KB
testcase_07 AC 43 ms
51,996 KB
testcase_08 AC 39 ms
53,556 KB
testcase_09 AC 39 ms
52,440 KB
testcase_10 AC 39 ms
53,220 KB
testcase_11 AC 40 ms
52,144 KB
testcase_12 AC 39 ms
52,400 KB
testcase_13 AC 39 ms
52,212 KB
testcase_14 AC 39 ms
52,556 KB
testcase_15 AC 39 ms
51,824 KB
testcase_16 AC 39 ms
52,552 KB
testcase_17 AC 38 ms
52,152 KB
testcase_18 AC 39 ms
52,504 KB
testcase_19 AC 39 ms
53,372 KB
testcase_20 AC 44 ms
59,932 KB
testcase_21 AC 45 ms
58,628 KB
testcase_22 AC 45 ms
58,048 KB
testcase_23 AC 44 ms
58,068 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
S = input()
if N == 1:
    print("NO")
elif N == 2 and S in ["01","10"]:
    print("NO")
elif N == 3 and S in ["101","010"]:
    print("NO")
else:
    print("YES")
0