結果
問題 | No.397 NO MORE KADOMATSU |
ユーザー | hanorver |
提出日時 | 2016-09-07 17:36:22 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 206 bytes |
コンパイル時間 | 345 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 27,864 KB |
平均クエリ数 | 694.89 |
最終ジャッジ日時 | 2024-07-16 11:03:15 |
合計ジャッジ時間 | 3,975 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 52 ms
27,096 KB |
testcase_01 | AC | 48 ms
27,224 KB |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | AC | 49 ms
27,096 KB |
testcase_10 | RE | - |
testcase_11 | AC | 47 ms
27,224 KB |
testcase_12 | AC | 51 ms
26,968 KB |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | AC | 48 ms
26,960 KB |
testcase_17 | AC | 49 ms
27,472 KB |
ソースコード
input() a=input().split() l=[] for i in range(len(a)): for j in range(i,len(a)-1): if a[j]>a[j+1]:l+=[j,j+1];a[j],a[j+1]=a[j+1],a[j] print(len(l)//2) for i in range(0,len(l),2):print(l[i],l[i+1]) input()