結果
| 問題 | No.490 yukiソート |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2017-09-01 22:22:49 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 225 bytes |
| 記録 | |
| コンパイル時間 | 402 ms |
| コンパイル使用メモリ | 20,700 KB |
| 実行使用メモリ | 15,360 KB |
| 最終ジャッジ日時 | 2026-05-06 22:37:19 |
| 合計ジャッジ時間 | 7,409 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 33 TLE * 1 |
ソースコード
n=int(input())
A=list(map(int,input().split()))
for i in range(2*n-3):
for p in range(n):
q=i-p
if n-1<q:continue
if p<q and A[p]>A[q]:
a,b=A[q],A[p]
A[p],A[q]=a,b
print(*A)