結果

問題 No.397 NO MORE KADOMATSU
ユーザー nebukuro09nebukuro09
提出日時 2016-10-19 12:36:45
言語 Python2
(2.7.18)
結果
AC  
実行時間 49 ms / 2,000 ms
コード長 284 bytes
コンパイル時間 95 ms
コンパイル使用メモリ 6,948 KB
実行使用メモリ 25,488 KB
平均クエリ数 651.67
最終ジャッジ日時 2024-07-17 00:30:06
合計ジャッジ時間 1,819 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

import sys

N = input()
A = map(int,raw_input().split())
ans = []
for i in xrange(N):
    for j in xrange(i+1, N):
        if A[i] > A[j]:
            A[i], A[j] = A[j], A[i]
            ans.append((i, j))
print len(ans)
for i, j in ans:
    print i, j
sys.stdout.flush()
raw_input()
0