結果

問題 No.397 NO MORE KADOMATSU
ユーザー pluto77pluto77
提出日時 2016-10-27 10:29:38
言語 Python2
(2.7.18)
結果
AC  
実行時間 55 ms / 2,000 ms
コード長 253 bytes
コンパイル時間 68 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 25,300 KB
平均クエリ数 936.56
最終ジャッジ日時 2024-07-17 00:34:38
合計ジャッジ時間 1,826 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#yuki_397
import sys

n=int(raw_input())
a=map(int,raw_input().split())
cnt=0
l=[]
for i in xrange(n):
 for j in xrange(n-i-1):
  if a[j]>a[j+1]:
   a[j],a[j+1]=a[j+1],a[j]
   cnt+=1
   l+=[[j,j+1]]
print cnt
for x,y in l:
 print x,y
sys.stdout.flush()
0