結果

問題 No.490 yukiソート
ユーザー はむ吉🐹はむ吉🐹
提出日時 2017-03-10 22:28:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 113 ms / 2,000 ms
コード長 403 bytes
コンパイル時間 174 ms
コンパイル使用メモリ 82,232 KB
実行使用メモリ 67,608 KB
最終ジャッジ日時 2024-06-24 09:57:37
合計ジャッジ時間 3,506 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,624 KB
testcase_01 AC 39 ms
53,312 KB
testcase_02 AC 38 ms
52,024 KB
testcase_03 AC 40 ms
52,568 KB
testcase_04 AC 51 ms
62,812 KB
testcase_05 AC 54 ms
61,316 KB
testcase_06 AC 52 ms
61,708 KB
testcase_07 AC 51 ms
61,420 KB
testcase_08 AC 51 ms
61,560 KB
testcase_09 AC 52 ms
61,628 KB
testcase_10 AC 52 ms
62,348 KB
testcase_11 AC 52 ms
61,676 KB
testcase_12 AC 51 ms
61,636 KB
testcase_13 AC 50 ms
61,716 KB
testcase_14 AC 113 ms
66,732 KB
testcase_15 AC 113 ms
67,608 KB
testcase_16 AC 109 ms
65,960 KB
testcase_17 AC 113 ms
66,024 KB
testcase_18 AC 110 ms
66,288 KB
testcase_19 AC 113 ms
66,016 KB
testcase_20 AC 111 ms
66,860 KB
testcase_21 AC 113 ms
66,828 KB
testcase_22 AC 111 ms
67,152 KB
testcase_23 AC 109 ms
67,472 KB
testcase_24 AC 39 ms
52,640 KB
testcase_25 AC 40 ms
51,820 KB
testcase_26 AC 39 ms
52,272 KB
testcase_27 AC 39 ms
53,148 KB
testcase_28 AC 40 ms
53,088 KB
testcase_29 AC 40 ms
52,204 KB
testcase_30 AC 41 ms
53,260 KB
testcase_31 AC 40 ms
53,532 KB
testcase_32 AC 41 ms
52,208 KB
testcase_33 AC 40 ms
53,016 KB
testcase_34 AC 40 ms
52,220 KB
testcase_35 AC 39 ms
52,340 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env pypy3


def in_place_yuki_sort(xs):
    n = len(xs)
    for i in range(1, 2 * n - 3):
        for p in range(n):
            q = i - p
            if 0 <= p < q <= n - 1 and xs[p] > xs[q]:
                xs[p], xs[q] = xs[q], xs[p]


def main():
    _ = input()
    xs = [int(x) for x in input().split()]
    in_place_yuki_sort(xs)
    print(*xs)


if __name__ == '__main__':
    main()
0