結果

問題 No.2092 Conjugation
ユーザー ニックネームニックネーム
提出日時 2022-10-07 21:25:31
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 149 ms / 2,000 ms
コード長 145 bytes
コンパイル時間 182 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 20,836 KB
最終ジャッジ日時 2024-06-12 05:52:35
合計ジャッジ時間 3,182 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,624 KB
testcase_01 AC 27 ms
10,624 KB
testcase_02 AC 26 ms
10,752 KB
testcase_03 AC 27 ms
10,624 KB
testcase_04 AC 28 ms
10,624 KB
testcase_05 AC 26 ms
10,624 KB
testcase_06 AC 26 ms
10,752 KB
testcase_07 AC 96 ms
13,184 KB
testcase_08 AC 125 ms
19,080 KB
testcase_09 AC 111 ms
17,408 KB
testcase_10 AC 112 ms
17,752 KB
testcase_11 AC 115 ms
17,988 KB
testcase_12 AC 114 ms
17,400 KB
testcase_13 AC 99 ms
16,512 KB
testcase_14 AC 98 ms
16,512 KB
testcase_15 AC 107 ms
17,280 KB
testcase_16 AC 139 ms
20,304 KB
testcase_17 AC 149 ms
20,836 KB
testcase_18 AC 142 ms
20,700 KB
testcase_19 AC 52 ms
12,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = list(map(int, input().split()))
b = [0]*a[0]
for v in a: b[v-1] += 1
for i in range(a[0]-1, 0, -1): b[i-1] += b[i]
print(*b)
0