結果

問題 No.2092 Conjugation
ユーザー tobusakanatobusakana
提出日時 2022-12-03 22:19:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 91 ms / 2,000 ms
コード長 188 bytes
コンパイル時間 234 ms
コンパイル使用メモリ 82,080 KB
実行使用メモリ 97,272 KB
最終ジャッジ日時 2024-10-11 01:28:36
合計ジャッジ時間 3,129 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,624 KB
testcase_01 AC 37 ms
52,824 KB
testcase_02 AC 38 ms
52,364 KB
testcase_03 AC 38 ms
52,124 KB
testcase_04 AC 38 ms
52,636 KB
testcase_05 AC 37 ms
52,620 KB
testcase_06 AC 38 ms
53,144 KB
testcase_07 AC 68 ms
79,792 KB
testcase_08 AC 91 ms
88,528 KB
testcase_09 AC 73 ms
82,040 KB
testcase_10 AC 74 ms
83,700 KB
testcase_11 AC 74 ms
83,352 KB
testcase_12 AC 72 ms
81,692 KB
testcase_13 AC 68 ms
80,484 KB
testcase_14 AC 68 ms
80,012 KB
testcase_15 AC 71 ms
81,228 KB
testcase_16 AC 84 ms
92,948 KB
testcase_17 AC 91 ms
97,272 KB
testcase_18 AC 88 ms
95,144 KB
testcase_19 AC 55 ms
75,876 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

A = list(map(int,input().split()))
D = [0] * (A[0] + 1)

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