結果

問題 No.1707 Simple Range Reverse Problem
ユーザー mesame3993mesame3993
提出日時 2021-10-15 22:32:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 545 ms / 2,000 ms
コード長 421 bytes
コンパイル時間 197 ms
コンパイル使用メモリ 82,072 KB
実行使用メモリ 100,272 KB
最終ジャッジ日時 2024-09-17 17:43:19
合計ジャッジ時間 3,656 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
51,968 KB
testcase_01 AC 44 ms
61,824 KB
testcase_02 AC 45 ms
62,080 KB
testcase_03 AC 51 ms
61,824 KB
testcase_04 AC 52 ms
67,860 KB
testcase_05 AC 51 ms
66,304 KB
testcase_06 AC 58 ms
63,360 KB
testcase_07 AC 55 ms
63,232 KB
testcase_08 AC 57 ms
63,360 KB
testcase_09 AC 73 ms
75,776 KB
testcase_10 AC 72 ms
76,032 KB
testcase_11 AC 48 ms
60,032 KB
testcase_12 AC 80 ms
75,904 KB
testcase_13 AC 93 ms
76,032 KB
testcase_14 AC 221 ms
86,352 KB
testcase_15 AC 535 ms
96,748 KB
testcase_16 AC 403 ms
95,400 KB
testcase_17 AC 303 ms
96,384 KB
testcase_18 AC 545 ms
100,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

t = int(input())
for _ in range(t):
	n = int(input())
	A = list(map(int, input().split()))
	ans = [x+1 for x in range(n)] * 2
	for i in range(2*n):
		if A == ans:
			print('Yes')
			break
		tmp = [A[i]]
		for j in range(i+1, 2*n):
			tmp.append(A[j])
			if A[j] == tmp[0]:
				k = j
				break
		t = list(reversed(tmp))
		if tmp == t:
			continue
		A[i:k+1] = t
		if A == ans:
			print('Yes')
			break
	else:
		print('No')
0