結果
問題 | No.2283 Prohibit Three Consecutive |
ユーザー | 森中康介 |
提出日時 | 2023-04-28 22:13:13 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 618 bytes |
コンパイル時間 | 130 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 11,008 KB |
最終ジャッジ日時 | 2024-11-17 21:09:04 |
合計ジャッジ時間 | 2,034 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 28 ms
10,752 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 27 ms
10,624 KB |
testcase_08 | AC | 63 ms
11,008 KB |
testcase_09 | AC | 68 ms
10,880 KB |
testcase_10 | AC | 68 ms
11,008 KB |
testcase_11 | AC | 65 ms
10,752 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
ソースコード
T = int(input()) for i in range(T): N = int(input()) S = input() count0 = 0 count1 = 0 result = 'Yes' for l in range(N+2): if l >= N : l -= N l = S[l] if l == '0': count0 += 1 count1 = 0 elif l == '1': count1 += 1 count0 = 0 else: if count1 > 0: count0 += 1 count1 = 0 elif count0 > 0: count1 += 1 count0 = 0 if count0 == 3 or count1 == 3: result = 'No' print(result)