結果

問題 No.397 NO MORE KADOMATSU
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-11-08 10:48:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 111 ms / 2,000 ms
コード長 194 bytes
コンパイル時間 233 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 89,056 KB
平均クエリ数 936.56
最終ジャッジ日時 2024-11-08 10:48:32
合計ジャッジ時間 3,089 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 62 ms
67,936 KB
testcase_01 AC 64 ms
68,448 KB
testcase_02 AC 57 ms
68,960 KB
testcase_03 AC 68 ms
75,232 KB
testcase_04 AC 61 ms
68,576 KB
testcase_05 AC 67 ms
75,104 KB
testcase_06 AC 87 ms
80,224 KB
testcase_07 AC 83 ms
80,864 KB
testcase_08 AC 62 ms
69,216 KB
testcase_09 AC 65 ms
74,080 KB
testcase_10 AC 111 ms
89,056 KB
testcase_11 AC 69 ms
74,464 KB
testcase_12 AC 100 ms
84,576 KB
testcase_13 AC 100 ms
86,368 KB
testcase_14 AC 102 ms
86,368 KB
testcase_15 AC 99 ms
85,984 KB
testcase_16 AC 65 ms
68,560 KB
testcase_17 AC 64 ms
68,304 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
a=list(map(int,input().split()))
o=[]
for i in range(n):
	for j in range(n-1):
		if a[j]>a[j+1]:
			o+=[(j,j+1)]
			a[j],a[j+1]=a[j+1],a[j]
print(len(o))
for x,y in o:
	print(x,y)
0