結果
問題 | No.397 NO MORE KADOMATSU |
ユーザー | Meso Meso |
提出日時 | 2024-11-23 19:52:28 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 334 bytes |
コンパイル時間 | 465 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 27,992 KB |
平均クエリ数 | 218.89 |
最終ジャッジ日時 | 2024-11-23 19:52:47 |
合計ジャッジ時間 | 4,079 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 50 ms
27,224 KB |
testcase_01 | RE | - |
testcase_02 | AC | 48 ms
27,224 KB |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | AC | 51 ms
27,224 KB |
testcase_10 | RE | - |
testcase_11 | AC | 49 ms
27,224 KB |
testcase_12 | AC | 57 ms
26,968 KB |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | AC | 49 ms
27,216 KB |
testcase_17 | AC | 51 ms
27,088 KB |
ソースコード
n = int(input()) a = list(map(int, input().split())) cnt = 0 ans = [] for i in range(n): minv = i for j in range(i+1, n): if a[j] < a[minv]: minv = j cnt += 1 ans.append([i,j]) a[i], a[minv] = a[minv], a[i] print(cnt) for i, j in ans: print(i, j) dummy = int(input())