結果

問題 No.1707 Simple Range Reverse Problem
ユーザー ygd.ygd.
提出日時 2021-10-19 23:20:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 58 ms / 2,000 ms
コード長 614 bytes
コンパイル時間 360 ms
コンパイル使用メモリ 82,124 KB
実行使用メモリ 75,440 KB
最終ジャッジ日時 2024-09-20 06:28:18
合計ジャッジ時間 2,240 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,896 KB
testcase_01 AC 44 ms
60,368 KB
testcase_02 AC 43 ms
58,952 KB
testcase_03 AC 42 ms
59,928 KB
testcase_04 AC 40 ms
60,536 KB
testcase_05 AC 39 ms
60,888 KB
testcase_06 AC 40 ms
60,040 KB
testcase_07 AC 40 ms
60,884 KB
testcase_08 AC 41 ms
60,316 KB
testcase_09 AC 50 ms
75,208 KB
testcase_10 AC 48 ms
75,016 KB
testcase_11 AC 41 ms
62,596 KB
testcase_12 AC 51 ms
75,248 KB
testcase_13 AC 54 ms
74,968 KB
testcase_14 AC 53 ms
75,440 KB
testcase_15 AC 58 ms
75,112 KB
testcase_16 AC 53 ms
75,096 KB
testcase_17 AC 53 ms
74,964 KB
testcase_18 AC 58 ms
75,228 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
#input = sys.stdin.buffer.readline

def main():
    T = int(input())
    for _ in range(T):
        N = int(input())
        A = list(map(int,input().split()))
        X = [i+1 for i in range(N)]
        X = X + X
        if X == A:
            print('Yes')
            continue
        for i in range(N):
            mid = X[i:i+N+1]
            mid.reverse()
            NX = X[:i] + mid + X[i+N+1:]
            #print(NX)
            if NX == A:
                print('Yes')
                break
        else:
            print('No')

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