結果
問題 | No.1707 Simple Range Reverse Problem |
ユーザー | gr1msl3y |
提出日時 | 2021-10-15 21:37:08 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 752 bytes |
コンパイル時間 | 161 ms |
コンパイル使用メモリ | 82,380 KB |
実行使用メモリ | 61,000 KB |
最終ジャッジ日時 | 2024-09-17 17:18:34 |
合計ジャッジ時間 | 1,662 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 39 ms
52,472 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 39 ms
58,892 KB |
testcase_15 | AC | 39 ms
58,816 KB |
testcase_16 | AC | 38 ms
58,652 KB |
testcase_17 | AC | 39 ms
58,900 KB |
testcase_18 | AC | 39 ms
58,972 KB |
ソースコード
def main(): T = int(input()) ans = [] for _ in range(T): N = int(input()) A = list(map(int, input().split())) ans.append('Yes' if solve(N, A) else 'No') print(*ans, sep='\n') def solve(N, A): w = 0 for i in range(N): if not A[i] == A[i+N] == i+1: break else: return True for i in range(N): if A[i] != i+1: w = i+1 break else: w = N for i in range(w, 2*w-1): if A[i] != 2*w-i-1: return False for i in range(2*w-1, w+N): if A[i] != N+2*w-i-1: return False for i in range(w+N, 2*N): if A[i] != i-N+1: return False else: return True main()