結果
問題 | No.1628 Sorting Integers (MAX of M) |
ユーザー | 8nd5t |
提出日時 | 2021-07-30 21:17:52 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 175 ms / 2,000 ms |
コード長 | 575 bytes |
コンパイル時間 | 165 ms |
コンパイル使用メモリ | 82,048 KB |
実行使用メモリ | 84,864 KB |
最終ジャッジ日時 | 2024-09-15 22:35:31 |
合計ジャッジ時間 | 2,822 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 167 ms
84,480 KB |
testcase_01 | AC | 170 ms
84,864 KB |
testcase_02 | AC | 175 ms
84,480 KB |
testcase_03 | AC | 173 ms
84,480 KB |
testcase_04 | AC | 171 ms
84,736 KB |
testcase_05 | AC | 174 ms
84,864 KB |
testcase_06 | AC | 173 ms
84,480 KB |
testcase_07 | AC | 173 ms
84,608 KB |
testcase_08 | AC | 174 ms
84,352 KB |
testcase_09 | AC | 173 ms
84,480 KB |
ソースコード
from collections import Counter,defaultdict,deque from heapq import heappop,heappush,heapify from bisect import bisect_left,bisect_right import sys,math,itertools,pprint,fractions sys.setrecursionlimit(10**8) mod = 10**9+7 INF = float('inf') def inp(): return int(sys.stdin.readline()) def inpl(): return list(map(int, sys.stdin.readline().split())) def inpl_1(): return list(map(lambda x:int(x)-1, sys.stdin.readline().split())) def err(x): print(x); exit() n = inp() c = inpl() res = '' for i in range(9): for _ in range(c[i]): res += str(i+1) print(res[::-1])