結果

問題 No.397 NO MORE KADOMATSU
ユーザー 👑 rin204rin204
提出日時 2022-01-20 03:08:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 95 ms / 2,000 ms
コード長 307 bytes
コンパイル時間 143 ms
コンパイル使用メモリ 82,428 KB
実行使用メモリ 88,572 KB
平均クエリ数 936.56
最終ジャッジ日時 2024-07-17 03:06:53
合計ジャッジ時間 2,690 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
69,412 KB
testcase_01 AC 57 ms
68,796 KB
testcase_02 AC 64 ms
69,068 KB
testcase_03 AC 66 ms
76,684 KB
testcase_04 AC 57 ms
68,788 KB
testcase_05 AC 65 ms
76,524 KB
testcase_06 AC 75 ms
81,300 KB
testcase_07 AC 79 ms
82,784 KB
testcase_08 AC 59 ms
68,900 KB
testcase_09 AC 60 ms
74,920 KB
testcase_10 AC 95 ms
88,572 KB
testcase_11 AC 62 ms
74,720 KB
testcase_12 AC 86 ms
86,040 KB
testcase_13 AC 90 ms
86,548 KB
testcase_14 AC 90 ms
86,068 KB
testcase_15 AC 88 ms
86,556 KB
testcase_16 AC 58 ms
68,368 KB
testcase_17 AC 57 ms
69,508 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
A = list(map(int, input().split()))
ans = []
for i in range(n):
    for j in range(n - 1, i, -1):
        if A[j] < A[j - 1]:
            A[j - 1], A[j] = A[j], A[j - 1]
            ans.append((j - 1, j))

print(len(ans))
for row in ans:
    print(*row)
print(end="", flush = True)

input()
0