結果

問題 No.290 1010
ユーザー rlangevinrlangevin
提出日時 2023-01-07 14:12:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 43 ms / 5,000 ms
コード長 178 bytes
コンパイル時間 468 ms
コンパイル使用メモリ 82,340 KB
実行使用メモリ 58,920 KB
最終ジャッジ日時 2024-05-08 10:38:09
合計ジャッジ時間 2,463 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,352 KB
testcase_01 AC 35 ms
53,192 KB
testcase_02 AC 35 ms
52,156 KB
testcase_03 AC 35 ms
51,816 KB
testcase_04 AC 34 ms
52,380 KB
testcase_05 AC 38 ms
52,372 KB
testcase_06 AC 36 ms
51,872 KB
testcase_07 AC 37 ms
52,028 KB
testcase_08 AC 36 ms
52,184 KB
testcase_09 AC 37 ms
51,872 KB
testcase_10 AC 37 ms
52,892 KB
testcase_11 AC 36 ms
52,208 KB
testcase_12 AC 36 ms
52,700 KB
testcase_13 AC 37 ms
52,316 KB
testcase_14 AC 37 ms
52,436 KB
testcase_15 AC 37 ms
52,480 KB
testcase_16 AC 37 ms
52,600 KB
testcase_17 AC 37 ms
52,016 KB
testcase_18 AC 36 ms
52,224 KB
testcase_19 AC 35 ms
51,856 KB
testcase_20 AC 42 ms
58,920 KB
testcase_21 AC 40 ms
58,600 KB
testcase_22 AC 43 ms
57,992 KB
testcase_23 AC 41 ms
58,484 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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