結果

問題 No.2092 Conjugation
ユーザー terasaterasa
提出日時 2022-10-07 21:25:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 119 ms / 2,000 ms
コード長 630 bytes
コンパイル時間 470 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 97,152 KB
最終ジャッジ日時 2024-06-12 05:51:53
合計ジャッジ時間 3,379 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
54,912 KB
testcase_01 AC 55 ms
55,168 KB
testcase_02 AC 51 ms
55,168 KB
testcase_03 AC 51 ms
55,168 KB
testcase_04 AC 51 ms
54,912 KB
testcase_05 AC 51 ms
55,552 KB
testcase_06 AC 52 ms
55,040 KB
testcase_07 AC 86 ms
80,896 KB
testcase_08 AC 102 ms
88,448 KB
testcase_09 AC 94 ms
82,944 KB
testcase_10 AC 95 ms
83,840 KB
testcase_11 AC 96 ms
83,968 KB
testcase_12 AC 94 ms
82,176 KB
testcase_13 AC 91 ms
80,640 KB
testcase_14 AC 90 ms
81,024 KB
testcase_15 AC 94 ms
82,048 KB
testcase_16 AC 113 ms
92,800 KB
testcase_17 AC 119 ms
97,152 KB
testcase_18 AC 116 ms
95,360 KB
testcase_19 AC 77 ms
77,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
# import pypyjit
import itertools
import heapq
import math
import bisect
from collections import deque, defaultdict
from functools import lru_cache, cmp_to_key


# for AtCoder Easy test
if __file__ == 'prog.py':
    pass
else:
    sys.setrecursionlimit(10 ** 6)
# pypyjit.set_param('max_unroll_recursion=-1')

input = sys.stdin.readline


def readints(): return map(int, input().split())
def readlist(): return list(readints())
def readstr(): return input()[:-1]


N = int(input())
A = readlist()

S = [0] * (A[0] + 1)
for a in A:
    S[0] += 1
    S[a] -= 1
for i in range(A[0]):
    S[i + 1] += S[i]
print(*S[:A[0]])
0