結果
| 問題 | 
                            No.490 yukiソート
                             | 
                    
| コンテスト | |
| ユーザー | 
                             | 
                    
| 提出日時 | 2017-09-01 22:22:49 | 
| 言語 | Python3  (3.13.1 + numpy 2.2.1 + scipy 1.14.1)  | 
                    
| 結果 | 
                             
                                TLE
                                 
                             
                            
                         | 
                    
| 実行時間 | - | 
| コード長 | 225 bytes | 
| コンパイル時間 | 266 ms | 
| コンパイル使用メモリ | 12,672 KB | 
| 実行使用メモリ | 11,008 KB | 
| 最終ジャッジ日時 | 2024-11-06 17:50:18 | 
| 合計ジャッジ時間 | 28,899 ms | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge4 / judge3 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 2 | 
| other | AC * 24 TLE * 10 | 
ソースコード
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)