結果

問題 No.490 yukiソート
ユーザー nbisconbisco
提出日時 2018-04-01 17:23:51
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 324 bytes
コンパイル時間 266 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 16,256 KB
最終ジャッジ日時 2024-06-26 05:42:47
合計ジャッジ時間 7,355 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 24 TLE * 10
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input().strip())
a = [int(i) for i in input().strip().split(" ")]

for i in range(1, 2*n-3):
    for p in range(n-1):
        q = i - p
        if p > q or q >= n:
            continue
        if a[p] > a[q]:
            tmp = a[q]
            a[q] = a[p]
            a[p] = tmp
print(" ".join([str(i) for i in a]))
0