結果

問題 No.397 NO MORE KADOMATSU
ユーザー ​
提出日時 2016-11-12 20:12:56
言語 Python2
(2.7.18)
結果
AC  
実行時間 52 ms / 2,000 ms
コード長 281 bytes
コンパイル時間 293 ms
コンパイル使用メモリ 7,072 KB
実行使用メモリ 25,616 KB
平均クエリ数 936.56
最終ジャッジ日時 2024-07-17 00:36:48
合計ジャッジ時間 2,112 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
24,836 KB
testcase_01 AC 29 ms
25,232 KB
testcase_02 AC 28 ms
24,848 KB
testcase_03 AC 32 ms
25,232 KB
testcase_04 AC 32 ms
24,848 KB
testcase_05 AC 36 ms
25,472 KB
testcase_06 AC 32 ms
25,616 KB
testcase_07 AC 33 ms
24,592 KB
testcase_08 AC 31 ms
24,964 KB
testcase_09 AC 30 ms
24,592 KB
testcase_10 AC 52 ms
24,592 KB
testcase_11 AC 29 ms
24,848 KB
testcase_12 AC 38 ms
24,848 KB
testcase_13 AC 43 ms
24,848 KB
testcase_14 AC 43 ms
24,976 KB
testcase_15 AC 41 ms
24,848 KB
testcase_16 AC 28 ms
24,848 KB
testcase_17 AC 28 ms
25,100 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = input()

A = map(eval, raw_input().strip().split())
assert len(A) == n

l = []
for i in xrange(len(A)):
  for j in xrange(1, len(A) - i):
    if A[j] < A[j-1]:
      A[j], A[j-1] = A[j-1], A[j]
      l += [(j, j-1)]

print len(l)
print "\n".join(map(lambda x: "%d %d" % x, l))
0