結果

問題 No.397 NO MORE KADOMATSU
ユーザー 👑 KazunKazun
提出日時 2020-11-28 15:43:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 97 ms / 2,000 ms
コード長 223 bytes
コンパイル時間 314 ms
コンパイル使用メモリ 82,576 KB
実行使用メモリ 88,308 KB
平均クエリ数 651.67
最終ジャッジ日時 2024-07-17 02:55:48
合計ジャッジ時間 2,575 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
68,976 KB
testcase_01 AC 58 ms
69,744 KB
testcase_02 AC 56 ms
68,676 KB
testcase_03 AC 64 ms
76,916 KB
testcase_04 AC 57 ms
69,088 KB
testcase_05 AC 62 ms
75,888 KB
testcase_06 AC 63 ms
75,104 KB
testcase_07 AC 64 ms
75,840 KB
testcase_08 AC 58 ms
69,112 KB
testcase_09 AC 61 ms
75,400 KB
testcase_10 AC 97 ms
88,308 KB
testcase_11 AC 60 ms
75,068 KB
testcase_12 AC 63 ms
74,400 KB
testcase_13 AC 85 ms
84,864 KB
testcase_14 AC 85 ms
84,940 KB
testcase_15 AC 88 ms
86,180 KB
testcase_16 AC 57 ms
69,624 KB
testcase_17 AC 56 ms
68,780 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=list(map(int,input().split()))

X=[]
for i in range(N):
    for j in range(i,N):
        if A[i]>A[j]:
            A[i],A[j]=A[j],A[i]
            X.append((i,j))

print(len(X))
for i,j in X:
    print(i,j)
0