結果

問題 No.1707 Simple Range Reverse Problem
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2021-10-16 10:22:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 53 ms / 2,000 ms
コード長 471 bytes
コンパイル時間 265 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 72,840 KB
最終ジャッジ日時 2024-09-17 19:18:39
合計ジャッジ時間 1,849 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,072 KB
testcase_01 AC 46 ms
62,924 KB
testcase_02 AC 45 ms
62,516 KB
testcase_03 AC 45 ms
61,836 KB
testcase_04 AC 46 ms
63,832 KB
testcase_05 AC 47 ms
62,332 KB
testcase_06 AC 50 ms
62,460 KB
testcase_07 AC 48 ms
62,280 KB
testcase_08 AC 51 ms
62,368 KB
testcase_09 AC 50 ms
64,872 KB
testcase_10 AC 47 ms
63,564 KB
testcase_11 AC 42 ms
59,832 KB
testcase_12 AC 48 ms
65,748 KB
testcase_13 AC 53 ms
70,080 KB
testcase_14 AC 49 ms
68,320 KB
testcase_15 AC 53 ms
72,840 KB
testcase_16 AC 53 ms
68,324 KB
testcase_17 AC 50 ms
66,896 KB
testcase_18 AC 51 ms
66,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve():
    n = int(input())
    A = list(map(int,input().split()))
    base = [i for i in range(1,n+1)]*2
    if base == A:
        return "Yes"
    for i in range(n):
        for j in range(n//2+1):
            base[i+j],base[i+n-j] = base[i+n-j],base[i+j]
        if base == A:
            return "Yes"
        for j in range(n//2+1):
            base[i+j],base[i+n-j] = base[i+n-j],base[i+j]
    return "No"
t = int(input())
for _ in range(t):
    print(solve())
0