結果
問題 |
No.397 NO MORE KADOMATSU
|
ユーザー |
![]() |
提出日時 | 2025-06-12 20:35:02 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 540 bytes |
コンパイル時間 | 349 ms |
コンパイル使用メモリ | 82,704 KB |
実行使用メモリ | 85,952 KB |
最終ジャッジ日時 | 2025-06-12 20:35:41 |
合計ジャッジ時間 | 6,734 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | TLE * 1 -- * 17 |
ソースコード
n = int(input()) a = list(map(int, input().split())) dummy = input() # read the dummy line current = a.copy() swaps = [] for i in range(n): # Find the index of the maximum element in current[i..n-1] max_idx = i max_val = current[i] for j in range(i, n): if current[j] > max_val: max_val = current[j] max_idx = j if max_idx != i: swaps.append((i, max_idx)) current[i], current[max_idx] = current[max_idx], current[i] print(len(swaps)) for u, v in swaps: print(u, v)