結果

問題 No.490 yukiソート
ユーザー iad_2889iad_2889
提出日時 2019-05-18 08:07:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 120 ms / 2,000 ms
コード長 347 bytes
コンパイル時間 332 ms
コンパイル使用メモリ 82,452 KB
実行使用メモリ 65,468 KB
最終ジャッジ日時 2024-09-17 06:08:47
合計ジャッジ時間 3,553 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,840 KB
testcase_01 AC 36 ms
53,132 KB
testcase_02 AC 36 ms
52,376 KB
testcase_03 AC 36 ms
53,356 KB
testcase_04 AC 50 ms
62,708 KB
testcase_05 AC 50 ms
62,716 KB
testcase_06 AC 51 ms
62,176 KB
testcase_07 AC 49 ms
61,760 KB
testcase_08 AC 50 ms
63,444 KB
testcase_09 AC 49 ms
62,304 KB
testcase_10 AC 49 ms
62,728 KB
testcase_11 AC 49 ms
63,920 KB
testcase_12 AC 49 ms
62,200 KB
testcase_13 AC 49 ms
62,648 KB
testcase_14 AC 120 ms
65,116 KB
testcase_15 AC 115 ms
64,784 KB
testcase_16 AC 115 ms
65,188 KB
testcase_17 AC 113 ms
63,880 KB
testcase_18 AC 115 ms
64,372 KB
testcase_19 AC 114 ms
65,456 KB
testcase_20 AC 117 ms
63,896 KB
testcase_21 AC 114 ms
64,284 KB
testcase_22 AC 113 ms
65,468 KB
testcase_23 AC 115 ms
63,708 KB
testcase_24 AC 40 ms
52,480 KB
testcase_25 AC 36 ms
52,620 KB
testcase_26 AC 35 ms
53,560 KB
testcase_27 AC 39 ms
52,076 KB
testcase_28 AC 41 ms
53,368 KB
testcase_29 AC 35 ms
53,488 KB
testcase_30 AC 36 ms
52,480 KB
testcase_31 AC 36 ms
53,948 KB
testcase_32 AC 36 ms
52,964 KB
testcase_33 AC 37 ms
53,344 KB
testcase_34 AC 36 ms
52,620 KB
testcase_35 AC 36 ms
53,428 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
As = [int(x) for x in input().split()]
for i in range(2 * N - 3):
    for p,ap in enumerate(As):
        if p == i + 1:
            break
        q = i - p
        if 0 <= p and p < q and q <= N - 1:
            aq = As[q]
            if ap > aq:
                As[p] = aq
                As[q] = ap

print(" ".join(map(str,As)))
0