結果

問題 No.1707 Simple Range Reverse Problem
ユーザー titan23titan23
提出日時 2022-06-21 13:40:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 69 ms / 2,000 ms
コード長 412 bytes
コンパイル時間 344 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 75,584 KB
最終ジャッジ日時 2024-10-14 07:00:12
合計ジャッジ時間 2,290 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
53,248 KB
testcase_01 AC 50 ms
60,288 KB
testcase_02 AC 47 ms
60,928 KB
testcase_03 AC 47 ms
60,288 KB
testcase_04 AC 48 ms
62,336 KB
testcase_05 AC 47 ms
62,592 KB
testcase_06 AC 48 ms
61,568 KB
testcase_07 AC 47 ms
61,568 KB
testcase_08 AC 48 ms
61,184 KB
testcase_09 AC 57 ms
75,520 KB
testcase_10 AC 56 ms
75,264 KB
testcase_11 AC 47 ms
63,232 KB
testcase_12 AC 60 ms
75,520 KB
testcase_13 AC 62 ms
75,520 KB
testcase_14 AC 64 ms
75,264 KB
testcase_15 AC 69 ms
75,136 KB
testcase_16 AC 65 ms
75,584 KB
testcase_17 AC 61 ms
75,136 KB
testcase_18 AC 66 ms
75,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from collections import Counter
input = lambda: sys.stdin.readline().rstrip()

##################

def main():
  n = int(input())
  A = list(map(int, input().split()))
  X = list(range(1, n+1)) + list(range(1, n+1))
  if A == X:
    return 'Yes'
  for i in range(0, n+1):
    if X[:i] + X[i+n:i:-1] + X[i+n:] == A:
      return 'Yes'
  return 'No'

t = int(input())
for _ in range(t):
  print(main())
0