結果

問題 No.290 1010
ユーザー maimai
提出日時 2017-05-22 08:30:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 63 ms / 5,000 ms
コード長 115 bytes
コンパイル時間 170 ms
コンパイル使用メモリ 82,532 KB
実行使用メモリ 69,376 KB
最終ジャッジ日時 2024-09-19 09:34:25
合計ジャッジ時間 2,415 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
62,464 KB
testcase_01 AC 56 ms
62,592 KB
testcase_02 AC 57 ms
62,464 KB
testcase_03 AC 56 ms
62,720 KB
testcase_04 AC 56 ms
62,592 KB
testcase_05 AC 56 ms
62,464 KB
testcase_06 AC 55 ms
62,592 KB
testcase_07 AC 55 ms
62,848 KB
testcase_08 AC 56 ms
62,848 KB
testcase_09 AC 57 ms
62,848 KB
testcase_10 AC 56 ms
62,720 KB
testcase_11 AC 55 ms
63,104 KB
testcase_12 AC 55 ms
62,848 KB
testcase_13 AC 54 ms
62,592 KB
testcase_14 AC 55 ms
63,232 KB
testcase_15 AC 56 ms
62,848 KB
testcase_16 AC 55 ms
62,848 KB
testcase_17 AC 56 ms
62,848 KB
testcase_18 AC 56 ms
62,464 KB
testcase_19 AC 56 ms
62,464 KB
testcase_20 AC 62 ms
68,608 KB
testcase_21 AC 62 ms
69,376 KB
testcase_22 AC 63 ms
68,864 KB
testcase_23 AC 62 ms
68,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import re

input()
ss=input()

if re.match(r'.*00|.*11|0101|1010', ss[0:4]):
    print('YES')
else:
    print('NO')
0