結果

問題 No.2092 Conjugation
ユーザー 👑 rin204rin204
提出日時 2022-10-07 21:21:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 81 ms / 2,000 ms
コード長 172 bytes
コンパイル時間 262 ms
コンパイル使用メモリ 81,884 KB
実行使用メモリ 95,072 KB
最終ジャッジ日時 2024-06-12 05:36:57
合計ジャッジ時間 2,698 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,452 KB
testcase_01 AC 38 ms
52,216 KB
testcase_02 AC 35 ms
52,364 KB
testcase_03 AC 37 ms
52,824 KB
testcase_04 AC 34 ms
52,320 KB
testcase_05 AC 35 ms
51,840 KB
testcase_06 AC 35 ms
52,708 KB
testcase_07 AC 63 ms
79,204 KB
testcase_08 AC 73 ms
87,412 KB
testcase_09 AC 66 ms
81,312 KB
testcase_10 AC 66 ms
82,716 KB
testcase_11 AC 64 ms
83,072 KB
testcase_12 AC 64 ms
81,000 KB
testcase_13 AC 61 ms
79,568 KB
testcase_14 AC 61 ms
79,084 KB
testcase_15 AC 64 ms
80,568 KB
testcase_16 AC 78 ms
92,148 KB
testcase_17 AC 81 ms
95,072 KB
testcase_18 AC 79 ms
94,400 KB
testcase_19 AC 49 ms
74,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

print(*ans)
0