結果
問題 | No.1032 数数え |
ユーザー | ryosuke0825 |
提出日時 | 2020-05-02 03:07:47 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 437 ms / 2,000 ms |
コード長 | 210 bytes |
コンパイル時間 | 136 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 36,708 KB |
最終ジャッジ日時 | 2024-12-26 01:03:28 |
合計ジャッジ時間 | 2,474 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 33 ms
10,368 KB |
testcase_01 | AC | 29 ms
10,496 KB |
testcase_02 | AC | 29 ms
10,496 KB |
testcase_03 | AC | 30 ms
10,496 KB |
testcase_04 | AC | 30 ms
10,368 KB |
testcase_05 | AC | 32 ms
10,368 KB |
testcase_06 | AC | 30 ms
10,496 KB |
testcase_07 | AC | 437 ms
36,708 KB |
testcase_08 | AC | 28 ms
10,368 KB |
testcase_09 | AC | 44 ms
10,880 KB |
testcase_10 | AC | 29 ms
10,368 KB |
testcase_11 | AC | 29 ms
10,496 KB |
testcase_12 | AC | 400 ms
26,548 KB |
ソースコード
import collections N, M = map(int, input().split()) L = list(map(int, input().split())) c = collections.Counter(L) for i in range(1, M+1): if i in c: print(i, c[i]) else: print(i, 0)