結果

問題 No.2092 Conjugation
ユーザー ああああ
提出日時 2022-10-12 12:13:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 98 ms / 2,000 ms
コード長 173 bytes
コンパイル時間 205 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 95,488 KB
最終ジャッジ日時 2024-06-26 06:23:17
合計ジャッジ時間 3,334 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,584 KB
testcase_01 AC 39 ms
51,840 KB
testcase_02 AC 39 ms
51,840 KB
testcase_03 AC 39 ms
51,840 KB
testcase_04 AC 40 ms
51,968 KB
testcase_05 AC 40 ms
51,968 KB
testcase_06 AC 40 ms
51,584 KB
testcase_07 AC 78 ms
79,872 KB
testcase_08 AC 89 ms
88,448 KB
testcase_09 AC 80 ms
82,304 KB
testcase_10 AC 84 ms
83,456 KB
testcase_11 AC 83 ms
83,968 KB
testcase_12 AC 82 ms
82,048 KB
testcase_13 AC 77 ms
80,128 KB
testcase_14 AC 78 ms
79,744 KB
testcase_15 AC 82 ms
81,792 KB
testcase_16 AC 96 ms
93,184 KB
testcase_17 AC 96 ms
94,236 KB
testcase_18 AC 98 ms
95,488 KB
testcase_19 AC 59 ms
75,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=list(map(int,input().split()))

cnt=[0]*(max(A)+1)
for i in range(N):
    cnt[A[i]]+=1

for i in range(max(A),0,-1):
    cnt[i-1]+=cnt[i]

print(*cnt[1:])

0