結果

問題 No.1032 数数え
ユーザー roarisroaris
提出日時 2020-12-02 13:37:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 197 ms / 2,000 ms
コード長 196 bytes
コンパイル時間 297 ms
コンパイル使用メモリ 82,200 KB
実行使用メモリ 112,636 KB
最終ジャッジ日時 2024-09-13 09:55:28
合計ジャッジ時間 2,390 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
54,116 KB
testcase_01 AC 42 ms
55,000 KB
testcase_02 AC 43 ms
54,868 KB
testcase_03 AC 42 ms
55,108 KB
testcase_04 AC 43 ms
54,624 KB
testcase_05 AC 42 ms
54,392 KB
testcase_06 AC 42 ms
53,988 KB
testcase_07 AC 197 ms
112,636 KB
testcase_08 AC 42 ms
53,964 KB
testcase_09 AC 68 ms
76,368 KB
testcase_10 AC 42 ms
54,464 KB
testcase_11 AC 42 ms
53,472 KB
testcase_12 AC 162 ms
103,844 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from collections import *

N, M = map(int, input().split())
L = list(map(int, input().split()))
cnt = Counter(L)

for i in range(1, M+1):
    print(i, cnt[i])
0