結果
| 問題 | No.490 yukiソート |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2018-08-14 21:04:43 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
AC
|
| 実行時間 | 70 ms / 2,000 ms |
| コード長 | 237 bytes |
| 記録 | |
| コンパイル時間 | 134 ms |
| コンパイル使用メモリ | 85,236 KB |
| 実行使用メモリ | 64,672 KB |
| 最終ジャッジ日時 | 2026-04-11 15:16:17 |
| 合計ジャッジ時間 | 2,741 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge2_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| 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(n):
if 0 <= i - j < n and j < i - j and a[j] > a[i - j]:
a[j], a[i - j] = a[i - j], a[j]
print(" ".join(map(str, a)))