結果
問題 | No.490 yukiソート |
ユーザー |
|
提出日時 | 2023-06-06 19:24:41 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
RE
|
実行時間 | - |
コード長 | 234 bytes |
コンパイル時間 | 303 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 11,008 KB |
最終ジャッジ日時 | 2024-12-29 08:37:56 |
合計ジャッジ時間 | 2,926 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | RE * 2 |
other | RE * 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)