結果

問題 No.2092 Conjugation
ユーザー Akijin_007Akijin_007
提出日時 2022-10-07 22:12:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 67 ms / 2,000 ms
コード長 299 bytes
コンパイル時間 523 ms
コンパイル使用メモリ 82,908 KB
実行使用メモリ 88,380 KB
最終ジャッジ日時 2024-06-12 18:49:54
合計ジャッジ時間 2,592 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,336 KB
testcase_01 AC 35 ms
52,156 KB
testcase_02 AC 37 ms
52,824 KB
testcase_03 AC 36 ms
53,684 KB
testcase_04 AC 35 ms
53,160 KB
testcase_05 AC 36 ms
53,260 KB
testcase_06 AC 35 ms
52,176 KB
testcase_07 AC 46 ms
64,104 KB
testcase_08 AC 59 ms
79,484 KB
testcase_09 AC 55 ms
72,364 KB
testcase_10 AC 54 ms
73,016 KB
testcase_11 AC 55 ms
73,136 KB
testcase_12 AC 53 ms
71,360 KB
testcase_13 AC 51 ms
68,472 KB
testcase_14 AC 49 ms
67,264 KB
testcase_15 AC 52 ms
72,028 KB
testcase_16 AC 65 ms
84,972 KB
testcase_17 AC 67 ms
88,380 KB
testcase_18 AC 66 ms
87,504 KB
testcase_19 AC 52 ms
75,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#int(input())
#map(int, input().split())
#list(map(int, input().split()))

N = int(input())
A = list(map(int, input().split()))
b = A[0]
ans = [0] * b

for i in range(N):
    ans[A[i]-1] += 1

# print(ans)

for i in range(b-1):
    ans[b-2-i] += ans[b-1-i]

print(" ".join([str(_) for _ in ans]))


0