結果

問題 No.490 yukiソート
ユーザー vwxyzvwxyz
提出日時 2022-09-07 18:10:55
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 901 bytes
コンパイル時間 263 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 12,160 KB
最終ジャッジ日時 2024-05-02 10:25:20
合計ジャッジ時間 14,444 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
11,904 KB
testcase_01 AC 35 ms
11,904 KB
testcase_02 AC 35 ms
11,904 KB
testcase_03 AC 34 ms
11,776 KB
testcase_04 AC 80 ms
11,776 KB
testcase_05 AC 78 ms
11,776 KB
testcase_06 AC 78 ms
11,904 KB
testcase_07 AC 78 ms
11,648 KB
testcase_08 AC 75 ms
11,904 KB
testcase_09 AC 87 ms
11,776 KB
testcase_10 AC 79 ms
12,032 KB
testcase_11 AC 78 ms
11,648 KB
testcase_12 AC 74 ms
11,904 KB
testcase_13 AC 79 ms
11,776 KB
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect
import copy
import decimal
import fractions
import heapq
import itertools
import math
import random
import sys
import time
from collections import Counter,deque,defaultdict
from functools import lru_cache,reduce
from heapq import heappush,heappop,heapify,heappushpop,_heappop_max,_heapify_max
def _heappush_max(heap,item):
    heap.append(item)
    heapq._siftdown_max(heap, 0, len(heap)-1)
def _heappushpop_max(heap, item):
    if heap and item < heap[0]:
        item, heap[0] = heap[0], item
        heapq._siftup_max(heap, 0)
    return item
from math import gcd as GCD
read=sys.stdin.read
readline=sys.stdin.readline
readlines=sys.stdin.readlines
write=sys.stdout.write

N=int(readline())
A=list(map(int,readline().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