結果

問題 No.2092 Conjugation
ユーザー prussian_coderprussian_coder
提出日時 2022-10-07 21:38:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 79 ms / 2,000 ms
コード長 182 bytes
コンパイル時間 175 ms
コンパイル使用メモリ 82,280 KB
実行使用メモリ 89,744 KB
最終ジャッジ日時 2024-06-12 06:35:21
合計ジャッジ時間 2,491 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,588 KB
testcase_01 AC 33 ms
53,440 KB
testcase_02 AC 35 ms
52,884 KB
testcase_03 AC 36 ms
52,588 KB
testcase_04 AC 35 ms
52,276 KB
testcase_05 AC 34 ms
52,156 KB
testcase_06 AC 34 ms
52,548 KB
testcase_07 AC 65 ms
79,976 KB
testcase_08 AC 73 ms
85,164 KB
testcase_09 AC 66 ms
81,460 KB
testcase_10 AC 68 ms
82,632 KB
testcase_11 AC 70 ms
82,236 KB
testcase_12 AC 67 ms
81,320 KB
testcase_13 AC 65 ms
80,296 KB
testcase_14 AC 64 ms
79,948 KB
testcase_15 AC 68 ms
81,068 KB
testcase_16 AC 79 ms
88,052 KB
testcase_17 AC 79 ms
88,684 KB
testcase_18 AC 77 ms
89,744 KB
testcase_19 AC 47 ms
70,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=[int(x) for x in input().split()]
M=A[0]
B=[0 for _ in range(M)]
for i in range(N):
	B[A[i]-1]+=1
C=[0]*M
c=0
for i in reversed(range(M)):
	c+=B[i]
	C[i]=c
print(*C)
0