結果

問題 No.1707 Simple Range Reverse Problem
ユーザー FromBooskaFromBooska
提出日時 2023-09-24 18:59:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 93 ms / 2,000 ms
コード長 658 bytes
コンパイル時間 328 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 76,464 KB
最終ジャッジ日時 2024-07-17 19:44:25
合計ジャッジ時間 2,345 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,352 KB
testcase_01 AC 57 ms
62,848 KB
testcase_02 AC 57 ms
64,512 KB
testcase_03 AC 54 ms
63,104 KB
testcase_04 AC 54 ms
66,304 KB
testcase_05 AC 53 ms
65,536 KB
testcase_06 AC 53 ms
65,024 KB
testcase_07 AC 56 ms
66,228 KB
testcase_08 AC 53 ms
65,792 KB
testcase_09 AC 78 ms
76,364 KB
testcase_10 AC 80 ms
76,104 KB
testcase_11 AC 71 ms
76,032 KB
testcase_12 AC 88 ms
76,288 KB
testcase_13 AC 93 ms
76,416 KB
testcase_14 AC 71 ms
76,032 KB
testcase_15 AC 81 ms
75,776 KB
testcase_16 AC 73 ms
75,904 KB
testcase_17 AC 69 ms
75,944 KB
testcase_18 AC 77 ms
76,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 作れるパターンをリストアウトしてわかったのだが操作は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 A == B:
        ans = 'Yes'
    for i in range(N*2):
        for j in range(i+1, N*2):
            if A[i]==A[j] and j-i>1:
                temp = A[:i]+A[i:j+1][::-1]+A[j+1:]
                if temp == B:
                    ans = 'Yes'
    print(ans)
0