結果

問題 No.1707 Simple Range Reverse Problem
ユーザー とりゐとりゐ
提出日時 2022-05-28 16:39:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 81 ms / 2,000 ms
コード長 359 bytes
コンパイル時間 315 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 76,288 KB
最終ジャッジ日時 2024-09-20 23:05:36
合計ジャッジ時間 2,662 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,068 KB
testcase_01 AC 51 ms
62,464 KB
testcase_02 AC 52 ms
62,848 KB
testcase_03 AC 53 ms
63,488 KB
testcase_04 AC 54 ms
64,896 KB
testcase_05 AC 62 ms
63,360 KB
testcase_06 AC 56 ms
62,464 KB
testcase_07 AC 52 ms
63,232 KB
testcase_08 AC 50 ms
62,336 KB
testcase_09 AC 65 ms
75,996 KB
testcase_10 AC 66 ms
75,776 KB
testcase_11 AC 49 ms
62,464 KB
testcase_12 AC 71 ms
76,032 KB
testcase_13 AC 73 ms
76,032 KB
testcase_14 AC 72 ms
76,288 KB
testcase_15 AC 81 ms
76,116 KB
testcase_16 AC 75 ms
76,220 KB
testcase_17 AC 72 ms
76,160 KB
testcase_18 AC 76 ms
76,132 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve():
  n=int(input())
  a=list(map(int,input().split()))
  b=[i%n+1 for i in range(2*n)]
  if a==b:
    print('Yes')
    return
  for i in range(2*n):
    for j in range(i+1,2*n):
      if b[i]==b[j]:
        c=b[:i+1]+b[j-1:i:-1]+b[j:]
        if a==c:
          print('Yes')
          return
  
  print('No')

for _ in range(int(input())):
  solve()
0