結果

問題 No.490 yukiソート
ユーザー convexineqconvexineq
提出日時 2021-02-09 06:32:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 84 ms / 2,000 ms
コード長 241 bytes
コンパイル時間 184 ms
コンパイル使用メモリ 82,096 KB
実行使用メモリ 67,636 KB
最終ジャッジ日時 2024-07-06 12:20:20
合計ジャッジ時間 3,520 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,492 KB
testcase_01 AC 37 ms
52,824 KB
testcase_02 AC 38 ms
53,204 KB
testcase_03 AC 38 ms
52,880 KB
testcase_04 AC 49 ms
62,732 KB
testcase_05 AC 48 ms
61,696 KB
testcase_06 AC 49 ms
61,124 KB
testcase_07 AC 50 ms
62,488 KB
testcase_08 AC 49 ms
61,748 KB
testcase_09 AC 48 ms
62,072 KB
testcase_10 AC 49 ms
61,216 KB
testcase_11 AC 50 ms
62,012 KB
testcase_12 AC 49 ms
61,936 KB
testcase_13 AC 51 ms
61,844 KB
testcase_14 AC 82 ms
66,124 KB
testcase_15 AC 84 ms
66,940 KB
testcase_16 AC 83 ms
66,672 KB
testcase_17 AC 83 ms
65,996 KB
testcase_18 AC 83 ms
66,352 KB
testcase_19 AC 84 ms
67,304 KB
testcase_20 AC 84 ms
67,064 KB
testcase_21 AC 84 ms
67,520 KB
testcase_22 AC 84 ms
66,268 KB
testcase_23 AC 84 ms
67,636 KB
testcase_24 AC 38 ms
52,340 KB
testcase_25 AC 38 ms
52,840 KB
testcase_26 AC 39 ms
52,940 KB
testcase_27 AC 39 ms
52,544 KB
testcase_28 AC 38 ms
52,480 KB
testcase_29 AC 38 ms
52,476 KB
testcase_30 AC 38 ms
51,880 KB
testcase_31 AC 38 ms
53,040 KB
testcase_32 AC 38 ms
53,456 KB
testcase_33 AC 37 ms
52,624 KB
testcase_34 AC 38 ms
52,296 KB
testcase_35 AC 38 ms
51,812 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
*a, = map(int,input().split())
for i in range(1,2*n-3):
    for p in range(min(n,i+1)):
        q = i-p
        if q >= n: continue
        if p >= q: break
        if a[p] > a[q]:
            a[p],a[q] = a[q],a[p]
print(*a)
0