結果

問題 No.1707 Simple Range Reverse Problem
ユーザー 👑 rin204rin204
提出日時 2021-12-13 01:42:24
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 565 bytes
コンパイル時間 182 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 59,008 KB
最終ジャッジ日時 2024-07-21 15:19:27
合計ジャッジ時間 1,739 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,840 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 42 ms
58,240 KB
testcase_08 WA -
testcase_09 AC 38 ms
58,496 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 39 ms
58,368 KB
testcase_13 AC 38 ms
58,496 KB
testcase_14 AC 38 ms
58,240 KB
testcase_15 AC 37 ms
58,368 KB
testcase_16 AC 40 ms
58,496 KB
testcase_17 AC 37 ms
58,368 KB
testcase_18 AC 38 ms
57,984 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve():
    n = int(input())
    A = list(map(int, input().split()))
    B = []
    ok = True
    for i in range(n):
        B.append(i + 1)
        if A[i] != A[i + n]:
            ok = False
    if ok:
        print("Yes")
        return
    l = r = -1
    for i in range(n):
        B.append(i + 1)
        if A[i] == A[i + n]:
            l = i
            r = i + n
    if l == -1:
        print("No")
        return
    A[l:r+1] = A[l:r+1][::-1]
    if A == B:
        print("Yes")
    else:
        print("No")

for _ in range(int(input())):
    solve()
0