結果
問題 | No.490 yukiソート |
ユーザー |
|
提出日時 | 2017-09-01 21:54:32 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
TLE
|
実行時間 | - |
コード長 | 247 bytes |
コンパイル時間 | 341 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 17,572 KB |
最終ジャッジ日時 | 2024-11-06 17:30:32 |
合計ジャッジ時間 | 3,893 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | -- * 2 |
other | AC * 4 TLE * 1 -- * 29 |
ソースコード
n=int(input()) A=list(map(int,input().split())) #print(n,A) for i in range(2*n-3): for p in range(n): for q in range(n): if p>=q:continue if p+q!=i:continue if A[p]>A[q]:A[p],A[q]=A[q],A[p] print(*A)