結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
11,776 KB
testcase_01 WA -
testcase_02 AC 41 ms
11,904 KB
testcase_03 AC 36 ms
11,776 KB
testcase_04 AC 83 ms
11,776 KB
testcase_05 AC 77 ms
11,904 KB
testcase_06 AC 84 ms
11,648 KB
testcase_07 AC 83 ms
11,904 KB
testcase_08 AC 80 ms
11,776 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
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 AC 35 ms
11,648 KB
testcase_25 AC 36 ms
11,904 KB
testcase_26 AC 37 ms
11,904 KB
testcase_27 AC 35 ms
11,776 KB
testcase_28 AC 35 ms
11,648 KB
testcase_29 AC 35 ms
11,904 KB
testcase_30 AC 34 ms
11,776 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
権限があれば一括ダウンロードができます

ソースコード

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-2):
    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