結果

問題 No.1707 Simple Range Reverse Problem
ユーザー FromBooskaFromBooska
提出日時 2023-09-24 19:02:59
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 665 bytes
コンパイル時間 303 ms
コンパイル使用メモリ 82,420 KB
実行使用メモリ 76,672 KB
最終ジャッジ日時 2024-07-17 19:47:32
合計ジャッジ時間 2,314 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,828 KB
testcase_01 AC 49 ms
62,292 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 51 ms
68,832 KB
testcase_05 AC 49 ms
68,396 KB
testcase_06 AC 52 ms
67,476 KB
testcase_07 AC 51 ms
68,576 KB
testcase_08 AC 70 ms
76,672 KB
testcase_09 AC 78 ms
75,720 KB
testcase_10 AC 76 ms
75,604 KB
testcase_11 AC 67 ms
75,656 KB
testcase_12 AC 86 ms
75,788 KB
testcase_13 AC 94 ms
76,072 KB
testcase_14 AC 73 ms
76,040 KB
testcase_15 AC 87 ms
75,932 KB
testcase_16 AC 75 ms
75,664 KB
testcase_17 AC 66 ms
76,024 KB
testcase_18 AC 76 ms
75,788 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# ACしたがBから変形するなら二重ループいらないのでそうする
# 作れるパターンをリストアウトしてわかったのだが操作は0回か1回しかない
# ということは最初からAになっているか、操作1回するかでAになるかだけ調べればいいか

T = int(input())
for t in range(T):
    N = int(input())
    A = list(map(int, input().split()))
    B = [a for a in range(1, N+1)]+[a for a in range(1, N+1)]
    ans = 'No'
    if B == A:
        ans = 'Yes'
    for i in range(N*2):
        j = i+N
        temp = B[:i]+B[i:j+1][::-1]+B[j+1:]
        if temp == A:
            ans = 'Yes'
    print(ans)

0