結果

問題 No.1707 Simple Range Reverse Problem
ユーザー SidewaysOwlSidewaysOwl
提出日時 2021-10-15 21:59:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 41 ms / 2,000 ms
コード長 583 bytes
コンパイル時間 350 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 60,844 KB
最終ジャッジ日時 2024-09-17 17:29:09
合計ジャッジ時間 1,817 ms
ジャッジサーバーID
(参考情報)
judge6 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
52,496 KB
testcase_01 AC 37 ms
59,584 KB
testcase_02 AC 41 ms
60,844 KB
testcase_03 AC 41 ms
59,664 KB
testcase_04 AC 37 ms
59,056 KB
testcase_05 AC 37 ms
59,272 KB
testcase_06 AC 38 ms
59,932 KB
testcase_07 AC 38 ms
60,084 KB
testcase_08 AC 39 ms
60,108 KB
testcase_09 AC 33 ms
59,844 KB
testcase_10 AC 33 ms
59,176 KB
testcase_11 AC 36 ms
58,436 KB
testcase_12 AC 38 ms
58,972 KB
testcase_13 AC 37 ms
58,932 KB
testcase_14 AC 36 ms
59,148 KB
testcase_15 AC 36 ms
60,092 KB
testcase_16 AC 34 ms
59,092 KB
testcase_17 AC 35 ms
58,540 KB
testcase_18 AC 36 ms
59,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

t = int(input())
for _ in range(t):
    n = int(input())
    a = list(map(int,input().split()))
    aa = [i+1 for i in range(n)] + [i+1 for i in range(n)]
    if a == aa:
        print("Yes")
        continue
    for i in range(n):
        if a[i+1] != ((i + 1) % n + 1):
#             print(a[i],i,(i + 1) % n + 1)
            cnt = 0    
            for j in range(i+n-1,i,-1):
                aa[j] = (i + cnt+1) % n + 1
#                 print(i,j,(i + cnt+1) % n + 1 )
                cnt += 1
            break
    if a == aa:
        print("Yes")
    else:
        print("No")
0