結果

問題 No.490 yukiソート
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2024-01-06 20:03:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 114 ms / 2,000 ms
コード長 429 bytes
コンパイル時間 320 ms
コンパイル使用メモリ 81,868 KB
実行使用メモリ 72,660 KB
最終ジャッジ日時 2024-09-27 19:19:33
合計ジャッジ時間 4,232 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
56,656 KB
testcase_01 AC 48 ms
56,104 KB
testcase_02 AC 48 ms
55,808 KB
testcase_03 AC 48 ms
55,484 KB
testcase_04 AC 64 ms
66,340 KB
testcase_05 AC 61 ms
66,048 KB
testcase_06 AC 61 ms
66,356 KB
testcase_07 AC 63 ms
67,248 KB
testcase_08 AC 63 ms
68,244 KB
testcase_09 AC 62 ms
66,360 KB
testcase_10 AC 64 ms
67,480 KB
testcase_11 AC 62 ms
66,692 KB
testcase_12 AC 62 ms
66,280 KB
testcase_13 AC 63 ms
67,616 KB
testcase_14 AC 111 ms
70,448 KB
testcase_15 AC 114 ms
71,196 KB
testcase_16 AC 109 ms
71,836 KB
testcase_17 AC 109 ms
70,508 KB
testcase_18 AC 111 ms
71,664 KB
testcase_19 AC 113 ms
71,236 KB
testcase_20 AC 111 ms
72,660 KB
testcase_21 AC 112 ms
71,824 KB
testcase_22 AC 113 ms
70,748 KB
testcase_23 AC 110 ms
71,096 KB
testcase_24 AC 48 ms
55,320 KB
testcase_25 AC 49 ms
55,832 KB
testcase_26 AC 49 ms
56,312 KB
testcase_27 AC 48 ms
55,992 KB
testcase_28 AC 49 ms
56,028 KB
testcase_29 AC 49 ms
56,052 KB
testcase_30 AC 49 ms
55,948 KB
testcase_31 AC 47 ms
55,732 KB
testcase_32 AC 49 ms
56,400 KB
testcase_33 AC 48 ms
56,060 KB
testcase_34 AC 50 ms
56,528 KB
testcase_35 AC 48 ms
55,500 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *
from itertools import *
from functools import *
from heapq import *
import sys,math
input = sys.stdin.readline

N = int(input())
A = list(map(int,input().split()))
for i in range(1,2*N-3):

    for j in range(i):
        if j>=N:
            break
        if i-j>=N:
            continue
        if i-j<=j:
            continue
        if (A[j]>A[i-j]):
            A[j],A[i-j] = A[i-j],A[j]
print(*A)

0