結果

問題 No.290 1010
ユーザー rlangevinrlangevin
提出日時 2023-01-07 14:12:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 75 ms / 5,000 ms
コード長 178 bytes
コンパイル時間 284 ms
コンパイル使用メモリ 87,240 KB
実行使用メモリ 73,900 KB
最終ジャッジ日時 2023-08-21 05:06:22
合計ジャッジ時間 3,484 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 69 ms
71,028 KB
testcase_01 AC 69 ms
71,360 KB
testcase_02 AC 66 ms
71,024 KB
testcase_03 AC 68 ms
71,172 KB
testcase_04 AC 71 ms
70,964 KB
testcase_05 AC 67 ms
71,284 KB
testcase_06 AC 67 ms
71,200 KB
testcase_07 AC 70 ms
71,164 KB
testcase_08 AC 69 ms
71,028 KB
testcase_09 AC 66 ms
71,220 KB
testcase_10 AC 67 ms
71,168 KB
testcase_11 AC 69 ms
71,032 KB
testcase_12 AC 69 ms
70,848 KB
testcase_13 AC 69 ms
71,244 KB
testcase_14 AC 68 ms
71,204 KB
testcase_15 AC 69 ms
70,988 KB
testcase_16 AC 68 ms
70,928 KB
testcase_17 AC 71 ms
71,160 KB
testcase_18 AC 68 ms
71,008 KB
testcase_19 AC 67 ms
71,168 KB
testcase_20 AC 74 ms
73,600 KB
testcase_21 AC 73 ms
73,900 KB
testcase_22 AC 75 ms
73,872 KB
testcase_23 AC 73 ms
73,648 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