結果

問題 No.2092 Conjugation
ユーザー 👑 H20H20
提出日時 2022-10-07 22:19:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 111 ms / 2,000 ms
コード長 176 bytes
コンパイル時間 1,246 ms
コンパイル使用メモリ 87,104 KB
実行使用メモリ 102,772 KB
最終ジャッジ日時 2023-09-03 13:15:20
合計ジャッジ時間 3,770 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 63 ms
71,452 KB
testcase_01 AC 60 ms
71,312 KB
testcase_02 AC 61 ms
71,280 KB
testcase_03 AC 60 ms
71,256 KB
testcase_04 AC 60 ms
71,600 KB
testcase_05 AC 60 ms
71,424 KB
testcase_06 AC 59 ms
71,268 KB
testcase_07 AC 84 ms
87,016 KB
testcase_08 AC 98 ms
95,592 KB
testcase_09 AC 93 ms
89,596 KB
testcase_10 AC 90 ms
90,644 KB
testcase_11 AC 91 ms
90,796 KB
testcase_12 AC 89 ms
89,084 KB
testcase_13 AC 87 ms
87,448 KB
testcase_14 AC 90 ms
87,292 KB
testcase_15 AC 89 ms
88,824 KB
testcase_16 AC 100 ms
100,264 KB
testcase_17 AC 111 ms
102,772 KB
testcase_18 AC 106 ms
102,572 KB
testcase_19 AC 78 ms
87,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int, input().split())) 
L = [0]*(A[0]+1)
L[0]=N
for a in A:
    L[a]-=1
AC = []
v = 0
for l in L:
    v+=l
    AC.append(v)
print(*AC[:len(AC)-1])
0