結果
問題 | No.2518 Adjacent Larger |
ユーザー | 👑 rin204 |
提出日時 | 2023-10-27 21:32:45 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 363 bytes |
コンパイル時間 | 223 ms |
コンパイル使用メモリ | 82,376 KB |
実行使用メモリ | 100,572 KB |
最終ジャッジ日時 | 2024-09-25 13:36:47 |
合計ジャッジ時間 | 3,680 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 38 ms
52,828 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 98 ms
76,580 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 77 ms
98,964 KB |
testcase_17 | AC | 63 ms
83,084 KB |
testcase_18 | AC | 62 ms
82,600 KB |
testcase_19 | AC | 61 ms
79,868 KB |
testcase_20 | AC | 68 ms
89,108 KB |
testcase_21 | AC | 69 ms
97,052 KB |
testcase_22 | AC | 70 ms
97,188 KB |
testcase_23 | AC | 79 ms
100,572 KB |
testcase_24 | AC | 75 ms
97,620 KB |
testcase_25 | AC | 73 ms
97,568 KB |
testcase_26 | AC | 73 ms
97,900 KB |
testcase_27 | AC | 72 ms
98,548 KB |
testcase_28 | AC | 73 ms
97,996 KB |
ソースコード
def solve(): n = int(input()) A = list(map(int, input().split())) if sum(A) != n: return False for i in range(n): if A[i] + A[i - 1] not in [1, 2, 3]: return False if 0 not in A: return False return True for _ in range(int(input())): if solve(): print("Yes") else: print("No")