結果

問題 No.490 yukiソート
ユーザー ABKZABKZ
提出日時 2023-09-11 07:24:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 71 ms / 2,000 ms
コード長 265 bytes
コンパイル時間 172 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 64,708 KB
最終ジャッジ日時 2024-06-28 21:50:59
合計ジャッジ時間 2,912 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,616 KB
testcase_01 AC 32 ms
51,940 KB
testcase_02 AC 33 ms
51,756 KB
testcase_03 AC 31 ms
53,168 KB
testcase_04 AC 41 ms
61,312 KB
testcase_05 AC 41 ms
61,488 KB
testcase_06 AC 40 ms
61,680 KB
testcase_07 AC 40 ms
61,428 KB
testcase_08 AC 40 ms
61,476 KB
testcase_09 AC 40 ms
61,024 KB
testcase_10 AC 39 ms
61,004 KB
testcase_11 AC 39 ms
62,480 KB
testcase_12 AC 40 ms
60,824 KB
testcase_13 AC 40 ms
62,056 KB
testcase_14 AC 65 ms
63,712 KB
testcase_15 AC 67 ms
64,708 KB
testcase_16 AC 66 ms
64,508 KB
testcase_17 AC 67 ms
62,960 KB
testcase_18 AC 66 ms
63,612 KB
testcase_19 AC 66 ms
63,556 KB
testcase_20 AC 65 ms
63,072 KB
testcase_21 AC 65 ms
64,288 KB
testcase_22 AC 71 ms
63,320 KB
testcase_23 AC 70 ms
63,184 KB
testcase_24 AC 34 ms
52,616 KB
testcase_25 AC 33 ms
52,008 KB
testcase_26 AC 33 ms
52,764 KB
testcase_27 AC 33 ms
52,708 KB
testcase_28 AC 34 ms
52,356 KB
testcase_29 AC 33 ms
52,128 KB
testcase_30 AC 33 ms
52,636 KB
testcase_31 AC 31 ms
53,252 KB
testcase_32 AC 32 ms
52,760 KB
testcase_33 AC 33 ms
52,964 KB
testcase_34 AC 33 ms
52,976 KB
testcase_35 AC 33 ms
52,600 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = list(map(int, input().split()))

for i in range(1, 2*n-3):
    for p in range(n):
        q = i - p
        if q < p:
            break
        if q < n and a[p] > a[q]:
            a[p], a[q] = a[q], a[p]

print(' '.join([str(x) for x in a]))
0