結果
問題 | No.490 yukiソート |
ユーザー | kohei2019 |
提出日時 | 2022-02-01 20:34:12 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 134 ms / 2,000 ms |
コード長 | 272 bytes |
コンパイル時間 | 392 ms |
コンパイル使用メモリ | 82,432 KB |
実行使用メモリ | 76,544 KB |
最終ジャッジ日時 | 2024-06-11 09:13:44 |
合計ジャッジ時間 | 3,896 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 34 |
ソースコード
N = int(input()) lsA = list(map(int,input().split())) for i in range(1,2*N-3): r = [] for p in range((i+1)//2): if i -p < N: r.append((p,i-p)) for p,q in r: if lsA[p] > lsA[q]: lsA[p],lsA[q] = lsA[q],lsA[p] print(*lsA)