結果

問題 No.1707 Simple Range Reverse Problem
ユーザー kohei2019kohei2019
提出日時 2023-06-09 15:42:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 60 ms / 2,000 ms
コード長 390 bytes
コンパイル時間 211 ms
コンパイル使用メモリ 82,160 KB
実行使用メモリ 75,488 KB
最終ジャッジ日時 2024-06-10 09:45:50
合計ジャッジ時間 2,014 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,500 KB
testcase_01 AC 40 ms
59,800 KB
testcase_02 AC 42 ms
60,136 KB
testcase_03 AC 42 ms
59,712 KB
testcase_04 AC 39 ms
62,384 KB
testcase_05 AC 38 ms
62,796 KB
testcase_06 AC 39 ms
60,748 KB
testcase_07 AC 40 ms
60,400 KB
testcase_08 AC 37 ms
60,292 KB
testcase_09 AC 48 ms
75,144 KB
testcase_10 AC 48 ms
75,304 KB
testcase_11 AC 39 ms
62,932 KB
testcase_12 AC 50 ms
74,872 KB
testcase_13 AC 54 ms
75,216 KB
testcase_14 AC 54 ms
74,748 KB
testcase_15 AC 60 ms
74,844 KB
testcase_16 AC 54 ms
75,084 KB
testcase_17 AC 58 ms
74,832 KB
testcase_18 AC 56 ms
75,488 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())
for i in range(T):
    N = int(input())
    ls = list(map(int,input().split()))
    stls = [i for i in range(1,N+1)]+[i for i in range(1,N+1)]
    if ls == stls:
        print('Yes')
        continue
    for j in range(N):
        vls = stls[:j+1]+stls[j+1:j+N][::-1]+stls[j+N:]
        if ls == vls:
            print('Yes')
            break
    else:
        print('No')
0