結果

問題 No.397 NO MORE KADOMATSU
ユーザー fumofumofunifumofumofuni
提出日時 2021-09-14 21:00:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 103 ms / 2,000 ms
コード長 284 bytes
コンパイル時間 179 ms
コンパイル使用メモリ 82,356 KB
実行使用メモリ 92,792 KB
平均クエリ数 936.56
最終ジャッジ日時 2024-07-17 03:05:47
合計ジャッジ時間 2,663 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
68,280 KB
testcase_01 AC 56 ms
68,436 KB
testcase_02 AC 57 ms
69,368 KB
testcase_03 AC 64 ms
76,520 KB
testcase_04 AC 57 ms
70,152 KB
testcase_05 AC 66 ms
76,908 KB
testcase_06 AC 76 ms
82,496 KB
testcase_07 AC 79 ms
84,116 KB
testcase_08 AC 58 ms
69,808 KB
testcase_09 AC 60 ms
75,104 KB
testcase_10 AC 103 ms
92,792 KB
testcase_11 AC 61 ms
74,848 KB
testcase_12 AC 87 ms
87,080 KB
testcase_13 AC 93 ms
88,580 KB
testcase_14 AC 92 ms
88,868 KB
testcase_15 AC 93 ms
87,676 KB
testcase_16 AC 57 ms
68,468 KB
testcase_17 AC 58 ms
69,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
M=list(map(int,input().split()))
A=[]
B=[]
for i in range(N):
    for j in range(N-1):
        if M[j]>M[j+1]:
            A.append(j)
            B.append(j+1)
            M[j],M[j+1]=M[j+1],M[j]
print(len(A))
for i in range(len(A)):
    print(A[i],B[i],' ')
N=input()
0