結果

問題 No.397 NO MORE KADOMATSU
ユーザー convexineqconvexineq
提出日時 2021-02-17 08:38:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 100 ms / 2,000 ms
コード長 283 bytes
コンパイル時間 149 ms
コンパイル使用メモリ 82,232 KB
実行使用メモリ 88,032 KB
平均クエリ数 936.56
最終ジャッジ日時 2024-07-17 02:57:33
合計ジャッジ時間 2,808 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 66 ms
68,448 KB
testcase_01 AC 62 ms
68,576 KB
testcase_02 AC 58 ms
68,320 KB
testcase_03 AC 68 ms
75,224 KB
testcase_04 AC 60 ms
68,832 KB
testcase_05 AC 67 ms
75,084 KB
testcase_06 AC 79 ms
80,736 KB
testcase_07 AC 80 ms
82,144 KB
testcase_08 AC 61 ms
69,088 KB
testcase_09 AC 63 ms
73,440 KB
testcase_10 AC 100 ms
88,032 KB
testcase_11 AC 63 ms
74,848 KB
testcase_12 AC 88 ms
84,960 KB
testcase_13 AC 93 ms
85,984 KB
testcase_14 AC 94 ms
86,112 KB
testcase_15 AC 93 ms
85,984 KB
testcase_16 AC 59 ms
68,688 KB
testcase_17 AC 60 ms
68,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
*a, = map(int,input().split())
res = []
for i in range(n):
    for j in range(n-i-1):
        if a[j] > a[j+1]:
            res.append((j,j+1))
            a[j+1],a[j] = a[j],a[j+1]
print(len(res))
for x,y in res:
    print(x,y)
import sys
sys.stdout.flush()
input()
0