結果
問題 | No.490 yukiソート |
ユーザー |
|
提出日時 | 2023-06-06 19:27:30 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 125 ms / 2,000 ms |
コード長 | 234 bytes |
コンパイル時間 | 421 ms |
コンパイル使用メモリ | 82,304 KB |
実行使用メモリ | 66,944 KB |
最終ジャッジ日時 | 2024-12-29 08:38:37 |
合計ジャッジ時間 | 4,121 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 34 |
ソースコード
n = int(input())A = list(map(int, input().split()))for i in range(1, 2 * n - 3):for p in range(n):q = i - pif 0 <= q < n and p < q:if A[p] > A[q]:A[p], A[q] = A[q], A[p]print(*A)