結果
問題 | No.490 yukiソート |
ユーザー |
![]() |
提出日時 | 2023-10-20 10:43:38 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 117 ms / 2,000 ms |
コード長 | 224 bytes |
コンパイル時間 | 209 ms |
コンパイル使用メモリ | 82,440 KB |
実行使用メモリ | 66,432 KB |
最終ジャッジ日時 | 2024-09-20 06:16:52 |
合計ジャッジ時間 | 3,537 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 34 |
ソースコード
n = int(input())A = list(map(int, input().split()))for i in range(2 * n - 3):for j in range(i):p, q = j, i - jif 0 <= p < q <= n - 1 and A[p] > A[q]:A[p], A[q] = A[q], A[p]print(*A)