結果

問題 No.490 yukiソート
ユーザー TomoyarnTomoyarn
提出日時 2023-09-01 21:05:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 104 ms / 2,000 ms
コード長 266 bytes
コンパイル時間 181 ms
コンパイル使用メモリ 81,720 KB
実行使用メモリ 67,912 KB
最終ジャッジ日時 2024-06-11 02:42:19
合計ジャッジ時間 3,122 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
53,104 KB
testcase_01 AC 34 ms
52,200 KB
testcase_02 AC 33 ms
51,688 KB
testcase_03 AC 34 ms
52,196 KB
testcase_04 AC 43 ms
62,136 KB
testcase_05 AC 44 ms
63,108 KB
testcase_06 AC 48 ms
62,708 KB
testcase_07 AC 45 ms
62,692 KB
testcase_08 AC 47 ms
62,644 KB
testcase_09 AC 47 ms
63,444 KB
testcase_10 AC 49 ms
62,440 KB
testcase_11 AC 46 ms
63,032 KB
testcase_12 AC 47 ms
61,872 KB
testcase_13 AC 48 ms
61,816 KB
testcase_14 AC 104 ms
66,588 KB
testcase_15 AC 99 ms
66,404 KB
testcase_16 AC 98 ms
66,952 KB
testcase_17 AC 99 ms
67,200 KB
testcase_18 AC 101 ms
66,488 KB
testcase_19 AC 102 ms
66,416 KB
testcase_20 AC 99 ms
67,912 KB
testcase_21 AC 99 ms
67,440 KB
testcase_22 AC 100 ms
67,324 KB
testcase_23 AC 101 ms
66,892 KB
testcase_24 AC 33 ms
52,256 KB
testcase_25 AC 32 ms
52,060 KB
testcase_26 AC 32 ms
52,948 KB
testcase_27 AC 32 ms
53,292 KB
testcase_28 AC 33 ms
52,736 KB
testcase_29 AC 31 ms
53,524 KB
testcase_30 AC 32 ms
51,944 KB
testcase_31 AC 32 ms
52,196 KB
testcase_32 AC 34 ms
52,420 KB
testcase_33 AC 33 ms
52,152 KB
testcase_34 AC 34 ms
52,124 KB
testcase_35 AC 34 ms
53,372 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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