結果

問題 No.397 NO MORE KADOMATSU
ユーザー yansi819yansi819
提出日時 2024-05-19 18:10:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 164 ms / 2,000 ms
コード長 362 bytes
コンパイル時間 206 ms
コンパイル使用メモリ 82,452 KB
実行使用メモリ 90,012 KB
平均クエリ数 651.67
最終ジャッジ日時 2024-05-19 18:10:28
合計ジャッジ時間 4,018 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 68 ms
69,220 KB
testcase_01 AC 66 ms
69,716 KB
testcase_02 AC 65 ms
68,604 KB
testcase_03 AC 76 ms
75,052 KB
testcase_04 AC 64 ms
69,496 KB
testcase_05 AC 74 ms
76,740 KB
testcase_06 AC 76 ms
76,452 KB
testcase_07 AC 77 ms
76,640 KB
testcase_08 AC 68 ms
70,224 KB
testcase_09 AC 64 ms
76,572 KB
testcase_10 AC 164 ms
90,012 KB
testcase_11 AC 66 ms
75,700 KB
testcase_12 AC 73 ms
75,236 KB
testcase_13 AC 137 ms
86,236 KB
testcase_14 AC 139 ms
86,552 KB
testcase_15 AC 142 ms
87,176 KB
testcase_16 AC 63 ms
69,696 KB
testcase_17 AC 63 ms
69,748 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_left
N = int(input())
A = list(map(int, input().split()))
ans = []
for i in range(N):
    for j in range(i + 1, N):
        if A[i] > A[j]:
            ans.append((i, j))
            A[i], A[j] = A[j], A[i]
#print(A)
print(len(ans), flush=True)
for i in range(len(ans)):
    print(ans[i][0], ans[i][1], flush=True)
Dummy = int(input())
0