結果
問題 | No.2518 Adjacent Larger |
ユーザー | atcoder8 |
提出日時 | 2023-10-27 23:38:17 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 525 bytes |
コンパイル時間 | 187 ms |
コンパイル使用メモリ | 82,432 KB |
実行使用メモリ | 100,996 KB |
最終ジャッジ日時 | 2024-09-25 15:29:42 |
合計ジャッジ時間 | 3,997 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 38 ms
52,096 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 101 ms
76,672 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 | 89 ms
100,992 KB |
testcase_17 | AC | 70 ms
83,072 KB |
testcase_18 | AC | 69 ms
82,944 KB |
testcase_19 | AC | 66 ms
79,488 KB |
testcase_20 | AC | 82 ms
89,088 KB |
testcase_21 | AC | 80 ms
96,128 KB |
testcase_22 | AC | 78 ms
95,872 KB |
testcase_23 | AC | 90 ms
100,996 KB |
testcase_24 | AC | 89 ms
99,968 KB |
testcase_25 | AC | 86 ms
100,992 KB |
testcase_26 | AC | 83 ms
100,480 KB |
testcase_27 | AC | 78 ms
97,536 KB |
testcase_28 | AC | 83 ms
100,480 KB |
ソースコード
def solve(): n = int(input()) aa = list(map(int, input().split())) zero_num = aa.count(0) two_num = aa.count(2) if ( zero_num == 0 or zero_num > n // 2 or two_num == 0 or two_num > n // 2 or zero_num != two_num ): return False if any(aa[i] == aa[(i + 1) % n] and aa[i] in (0, 2) for i in range(n)): return False return True def main(): t = int(input()) for _ in range(t): print("Yes" if solve() else "No") main()