結果

問題 No.1032 数数え
ユーザー _matumo_
提出日時 2020-04-30 17:28:57
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
実行時間 -
コード長 109 bytes
コンパイル時間 138 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 33,748 KB
最終ジャッジ日時 2024-12-16 05:05:18
合計ジャッジ時間 7,900 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 8 TLE * 2
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M=map(int,input().split())
p=[int(n) for n in input().split()]
for i in range(M):
	print(i+1, p.count(i+1))
0