結果

問題 No.290 1010
ユーザー lloyzlloyz
提出日時 2023-03-06 21:21:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 131 ms / 5,000 ms
コード長 186 bytes
コンパイル時間 174 ms
コンパイル使用メモリ 82,192 KB
実行使用メモリ 181,576 KB
最終ジャッジ日時 2024-09-18 01:56:05
合計ジャッジ時間 2,558 ms
ジャッジサーバーID
(参考情報)
judge6 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,600 KB
testcase_01 AC 39 ms
53,296 KB
testcase_02 AC 37 ms
51,964 KB
testcase_03 AC 38 ms
52,180 KB
testcase_04 AC 37 ms
52,084 KB
testcase_05 AC 35 ms
54,052 KB
testcase_06 AC 39 ms
52,012 KB
testcase_07 AC 37 ms
52,948 KB
testcase_08 AC 37 ms
51,700 KB
testcase_09 AC 37 ms
53,252 KB
testcase_10 AC 39 ms
52,352 KB
testcase_11 AC 37 ms
51,980 KB
testcase_12 AC 35 ms
52,216 KB
testcase_13 AC 36 ms
53,368 KB
testcase_14 AC 37 ms
52,360 KB
testcase_15 AC 37 ms
52,012 KB
testcase_16 AC 38 ms
52,384 KB
testcase_17 AC 37 ms
52,772 KB
testcase_18 AC 37 ms
53,220 KB
testcase_19 AC 37 ms
52,828 KB
testcase_20 AC 130 ms
180,708 KB
testcase_21 AC 130 ms
180,848 KB
testcase_22 AC 131 ms
181,576 KB
testcase_23 AC 129 ms
180,600 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
S = list(map(int, list(input())))

for i in range(n - 1):
    if S[i] == S[i + 1]:
        print("YES")
        exit()
if n >= 4:
    print("YES")
else:
    print("NO")
0