結果

問題 No.490 yukiソート
ユーザー first_vilfirst_vil
提出日時 2021-11-15 09:04:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 93 ms / 2,000 ms
コード長 222 bytes
コンパイル時間 423 ms
コンパイル使用メモリ 82,464 KB
実行使用メモリ 65,544 KB
最終ジャッジ日時 2024-12-14 05:22:59
合計ジャッジ時間 3,816 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,224 KB
testcase_01 AC 38 ms
52,864 KB
testcase_02 AC 40 ms
53,020 KB
testcase_03 AC 38 ms
52,700 KB
testcase_04 AC 49 ms
61,940 KB
testcase_05 AC 51 ms
62,872 KB
testcase_06 AC 51 ms
62,040 KB
testcase_07 AC 50 ms
61,996 KB
testcase_08 AC 50 ms
61,452 KB
testcase_09 AC 48 ms
61,868 KB
testcase_10 AC 48 ms
61,768 KB
testcase_11 AC 51 ms
61,552 KB
testcase_12 AC 49 ms
62,568 KB
testcase_13 AC 50 ms
62,868 KB
testcase_14 AC 91 ms
64,228 KB
testcase_15 AC 93 ms
65,544 KB
testcase_16 AC 93 ms
64,812 KB
testcase_17 AC 91 ms
64,036 KB
testcase_18 AC 91 ms
63,944 KB
testcase_19 AC 90 ms
64,536 KB
testcase_20 AC 90 ms
64,488 KB
testcase_21 AC 91 ms
64,592 KB
testcase_22 AC 91 ms
64,204 KB
testcase_23 AC 93 ms
63,848 KB
testcase_24 AC 40 ms
52,740 KB
testcase_25 AC 38 ms
52,864 KB
testcase_26 AC 39 ms
53,136 KB
testcase_27 AC 40 ms
52,484 KB
testcase_28 AC 39 ms
52,560 KB
testcase_29 AC 39 ms
52,248 KB
testcase_30 AC 39 ms
52,368 KB
testcase_31 AC 41 ms
52,640 KB
testcase_32 AC 39 ms
53,676 KB
testcase_33 AC 40 ms
52,696 KB
testcase_34 AC 40 ms
52,604 KB
testcase_35 AC 40 ms
51,836 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 p<q<n and a[p]>a[q]:
            a[p],a[q] = a[q],a[p]
s = list(map(str,a))
print(' '.join(s))
0