結果

問題 No.1707 Simple Range Reverse Problem
ユーザー hir355hir355
提出日時 2021-10-15 21:33:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 56 ms / 2,000 ms
コード長 366 bytes
コンパイル時間 124 ms
コンパイル使用メモリ 82,100 KB
実行使用メモリ 75,280 KB
最終ジャッジ日時 2024-09-17 17:16:30
合計ジャッジ時間 1,677 ms
ジャッジサーバーID
(参考情報)
judge6 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
53,516 KB
testcase_01 AC 37 ms
60,556 KB
testcase_02 AC 37 ms
60,004 KB
testcase_03 AC 36 ms
60,564 KB
testcase_04 AC 38 ms
62,348 KB
testcase_05 AC 39 ms
61,964 KB
testcase_06 AC 39 ms
60,628 KB
testcase_07 AC 38 ms
60,844 KB
testcase_08 AC 36 ms
62,164 KB
testcase_09 AC 43 ms
74,952 KB
testcase_10 AC 42 ms
74,904 KB
testcase_11 AC 37 ms
62,720 KB
testcase_12 AC 45 ms
74,976 KB
testcase_13 AC 49 ms
75,272 KB
testcase_14 AC 55 ms
75,012 KB
testcase_15 AC 56 ms
74,968 KB
testcase_16 AC 54 ms
75,280 KB
testcase_17 AC 50 ms
75,072 KB
testcase_18 AC 51 ms
75,176 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))
    for i in range(n):
        if x[:i + 1] + x[i + 1:i+n][::-1] + x[i+n:] == a:
            print('Yes')
            break
    else:
        if x == a:
            print('Yes')
        else:
            print('No')
0