結果

問題 No.1707 Simple Range Reverse Problem
ユーザー tamatotamato
提出日時 2021-10-15 21:27:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 66 ms / 2,000 ms
コード長 568 bytes
コンパイル時間 149 ms
コンパイル使用メモリ 82,576 KB
実行使用メモリ 75,764 KB
最終ジャッジ日時 2024-09-17 17:14:16
合計ジャッジ時間 1,810 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,776 KB
testcase_01 AC 42 ms
60,284 KB
testcase_02 AC 42 ms
60,360 KB
testcase_03 AC 43 ms
60,948 KB
testcase_04 AC 42 ms
63,344 KB
testcase_05 AC 42 ms
61,672 KB
testcase_06 AC 41 ms
61,100 KB
testcase_07 AC 42 ms
60,900 KB
testcase_08 AC 42 ms
61,144 KB
testcase_09 AC 51 ms
75,280 KB
testcase_10 AC 53 ms
75,476 KB
testcase_11 AC 41 ms
64,440 KB
testcase_12 AC 53 ms
75,580 KB
testcase_13 AC 58 ms
75,764 KB
testcase_14 AC 57 ms
75,152 KB
testcase_15 AC 66 ms
75,672 KB
testcase_16 AC 59 ms
75,288 KB
testcase_17 AC 55 ms
75,416 KB
testcase_18 AC 61 ms
75,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 1000000007
eps = 10**-9


def main():
    import sys
    input = sys.stdin.readline

    for _ in range(int(input())):
        N = int(input())
        A = list(map(int, input().split()))
        B = list(range(1, N+1)) + list(range(1, N+1))

        ok = 0
        if A == B:
            ok = 1
        for i in range(N):
            C = B[:i] + B[i:i+N+1][::-1] + B[i+N+1:]
            if C == A:
                ok = 1
                break
        if ok:
            print("Yes")
        else:
            print("No")


if __name__ == '__main__':
    main()
0