結果

問題 No.490 yukiソート
ユーザー TatsunoTatsuno
提出日時 2017-03-12 18:34:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 130 ms / 2,000 ms
コード長 387 bytes
コンパイル時間 1,532 ms
コンパイル使用メモリ 82,012 KB
実行使用メモリ 65,380 KB
最終ジャッジ日時 2024-06-30 00:32:39
合計ジャッジ時間 3,681 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
52,900 KB
testcase_01 AC 30 ms
52,292 KB
testcase_02 AC 31 ms
52,288 KB
testcase_03 AC 36 ms
52,220 KB
testcase_04 AC 50 ms
62,700 KB
testcase_05 AC 43 ms
62,568 KB
testcase_06 AC 43 ms
63,076 KB
testcase_07 AC 44 ms
62,832 KB
testcase_08 AC 43 ms
63,052 KB
testcase_09 AC 44 ms
63,244 KB
testcase_10 AC 43 ms
62,188 KB
testcase_11 AC 43 ms
61,980 KB
testcase_12 AC 43 ms
62,612 KB
testcase_13 AC 42 ms
62,312 KB
testcase_14 AC 124 ms
65,300 KB
testcase_15 AC 123 ms
64,940 KB
testcase_16 AC 122 ms
65,084 KB
testcase_17 AC 123 ms
64,224 KB
testcase_18 AC 123 ms
64,632 KB
testcase_19 AC 122 ms
64,568 KB
testcase_20 AC 128 ms
64,492 KB
testcase_21 AC 122 ms
65,380 KB
testcase_22 AC 130 ms
64,676 KB
testcase_23 AC 122 ms
64,848 KB
testcase_24 AC 34 ms
53,592 KB
testcase_25 AC 33 ms
52,380 KB
testcase_26 AC 32 ms
52,848 KB
testcase_27 AC 34 ms
53,448 KB
testcase_28 AC 31 ms
52,792 KB
testcase_29 AC 32 ms
52,260 KB
testcase_30 AC 32 ms
52,476 KB
testcase_31 AC 31 ms
52,284 KB
testcase_32 AC 31 ms
52,340 KB
testcase_33 AC 31 ms
52,092 KB
testcase_34 AC 30 ms
52,304 KB
testcase_35 AC 31 ms
51,492 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
a=list(map(int,input().split()))
while True:
    ok = False
    for i in range(1, 2*n-3):
        for p in range(0, n-1):
            q = i-p
            if p >= q or not (0 <= p < n and 0 <= q < n):
                continue
            if a[p] > a[q]:
                a[p],a[q]=a[q],a[p]
                ok = True
    if not ok:
        break
print(' '.join(map(str,a)))
0