結果
| 問題 | No.1032 数数え |
| ユーザー |
rlangevin
|
| 提出日時 | 2024-09-12 12:11:18 |
| 言語 | PyPy3 (7.3.23 + ACL) |
| 結果 |
AC
不安定
|
| 実行時間 | 174 ms / 2,000 ms |
| + 258µs | |
| コード長 | 149 bytes |
| 記録 | |
| コンパイル時間 | 233 ms |
| コンパイル使用メモリ | 95,472 KB |
| 実行使用メモリ | 145,660 KB |
| 最終ジャッジ日時 | 2026-08-25 17:21:15 |
| 合計ジャッジ時間 | 3,289 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 10 |
ソースコード
from collections import *
N, M = map(int, input().split())
L = Counter(list(map(int, input().split())))
for i in range(1, M + 1):
print(i, L[i])
rlangevin