結果
問題 | No.490 yukiソート |
ユーザー |
![]() |
提出日時 | 2023-10-20 10:39:57 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 224 bytes |
コンパイル時間 | 162 ms |
コンパイル使用メモリ | 82,048 KB |
実行使用メモリ | 66,688 KB |
最終ジャッジ日時 | 2024-09-20 06:13:40 |
合計ジャッジ時間 | 3,463 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 13 WA * 21 |
ソースコード
n = int(input())A = list(map(int, input().split()))for i in range(2 * n - 2):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)