結果
問題 | No.1032 数数え |
ユーザー |
|
提出日時 | 2023-06-07 21:39:55 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 122 bytes |
コンパイル時間 | 267 ms |
コンパイル使用メモリ | 81,920 KB |
実行使用メモリ | 158,336 KB |
最終ジャッジ日時 | 2024-12-30 03:31:43 |
合計ジャッジ時間 | 7,793 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 8 TLE * 2 |
ソースコード
N, M = map(int, input().split()) L = list(map(int, input().split())) for i in range(1, M + 1): print(f"{i} {L.count(i)}")