結果

問題 No.1707 Simple Range Reverse Problem
ユーザー brthyyjpbrthyyjp
提出日時 2021-10-17 14:36:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 70 ms / 2,000 ms
コード長 419 bytes
コンパイル時間 381 ms
コンパイル使用メモリ 82,576 KB
実行使用メモリ 75,372 KB
最終ジャッジ日時 2024-09-17 19:40:47
合計ジャッジ時間 2,081 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,824 KB
testcase_01 AC 46 ms
61,304 KB
testcase_02 AC 44 ms
61,116 KB
testcase_03 AC 46 ms
61,136 KB
testcase_04 AC 46 ms
63,204 KB
testcase_05 AC 44 ms
62,564 KB
testcase_06 AC 47 ms
61,964 KB
testcase_07 AC 48 ms
61,412 KB
testcase_08 AC 46 ms
61,544 KB
testcase_09 AC 55 ms
75,136 KB
testcase_10 AC 52 ms
75,300 KB
testcase_11 AC 42 ms
63,828 KB
testcase_12 AC 57 ms
74,788 KB
testcase_13 AC 63 ms
75,232 KB
testcase_14 AC 64 ms
75,256 KB
testcase_15 AC 70 ms
75,360 KB
testcase_16 AC 65 ms
75,020 KB
testcase_17 AC 63 ms
75,372 KB
testcase_18 AC 65 ms
75,316 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

t = int(input())
for _ in range(t):
    n = int(input())
    A = list(map(int, input().split()))
    X = list(range(1, n+1))+list(range(1, n+1))
    if A == X:
        print('Yes')
        continue
    flag = False
    for i in range(n):
        B = X[0:i]+list(reversed(X[i:i+n+1]))+X[i+n+1:]
        if A == B:
            flag = True
            break
    if flag:
        print('Yes')
    else:
        print('No')
0