結果

問題 No.1707 Simple Range Reverse Problem
ユーザー O2MTO2MT
提出日時 2021-10-15 23:33:53
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 374 bytes
コンパイル時間 210 ms
コンパイル使用メモリ 82,060 KB
実行使用メモリ 61,488 KB
最終ジャッジ日時 2024-09-17 18:37:49
合計ジャッジ時間 1,753 ms
ジャッジサーバーID
(参考情報)
judge6 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,852 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 39 ms
60,708 KB
testcase_05 AC 36 ms
60,856 KB
testcase_06 AC 37 ms
60,036 KB
testcase_07 AC 39 ms
60,676 KB
testcase_08 AC 36 ms
61,488 KB
testcase_09 AC 37 ms
60,096 KB
testcase_10 AC 37 ms
60,664 KB
testcase_11 AC 36 ms
60,392 KB
testcase_12 AC 34 ms
59,472 KB
testcase_13 AC 33 ms
59,968 KB
testcase_14 AC 35 ms
60,304 KB
testcase_15 AC 34 ms
59,860 KB
testcase_16 AC 34 ms
61,360 KB
testcase_17 AC 34 ms
60,620 KB
testcase_18 AC 35 ms
61,484 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())
for _ in range(T):
  N = int(input())
  A = list(map(int,input().split()))
  X = []

  for x in range(1,N+1):
    X.append(x)
    X.append(x)
  X.sort()
  AS = sorted(A)

  if X != AS:
    print('No')
    continue

  count = 0

  for i in range(1,2*N):
    if abs(A[i-1]-A[i]) > 1:
      count += 1

  if count == 1:
    print('Yes')
  else:
    print('No')
0