結果

問題 No.490 yukiソート
ユーザー titiatitia
提出日時 2023-06-14 05:53:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 91 ms / 2,000 ms
コード長 246 bytes
コンパイル時間 403 ms
コンパイル使用メモリ 82,376 KB
実行使用メモリ 68,088 KB
最終ジャッジ日時 2024-06-22 18:28:01
合計ジャッジ時間 3,384 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,428 KB
testcase_01 AC 34 ms
52,532 KB
testcase_02 AC 33 ms
53,428 KB
testcase_03 AC 35 ms
52,632 KB
testcase_04 AC 47 ms
62,608 KB
testcase_05 AC 49 ms
63,496 KB
testcase_06 AC 47 ms
62,172 KB
testcase_07 AC 43 ms
62,688 KB
testcase_08 AC 46 ms
62,232 KB
testcase_09 AC 43 ms
62,292 KB
testcase_10 AC 45 ms
63,012 KB
testcase_11 AC 48 ms
62,616 KB
testcase_12 AC 44 ms
62,268 KB
testcase_13 AC 44 ms
62,824 KB
testcase_14 AC 88 ms
68,088 KB
testcase_15 AC 88 ms
67,376 KB
testcase_16 AC 89 ms
66,660 KB
testcase_17 AC 89 ms
67,556 KB
testcase_18 AC 90 ms
66,740 KB
testcase_19 AC 88 ms
67,184 KB
testcase_20 AC 91 ms
66,604 KB
testcase_21 AC 87 ms
66,280 KB
testcase_22 AC 89 ms
67,776 KB
testcase_23 AC 89 ms
67,376 KB
testcase_24 AC 33 ms
53,360 KB
testcase_25 AC 32 ms
53,384 KB
testcase_26 AC 33 ms
52,484 KB
testcase_27 AC 32 ms
52,688 KB
testcase_28 AC 33 ms
52,276 KB
testcase_29 AC 33 ms
53,692 KB
testcase_30 AC 32 ms
52,664 KB
testcase_31 AC 33 ms
52,348 KB
testcase_32 AC 33 ms
53,116 KB
testcase_33 AC 32 ms
53,080 KB
testcase_34 AC 33 ms
52,768 KB
testcase_35 AC 32 ms
52,476 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

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 0<=p<q<=n-1:
            if A[p]>A[q]:
                A[p],A[q]=A[q],A[p]
print(*A)
0