結果

問題 No.1032 数数え
ユーザー ああいいああいい
提出日時 2021-12-05 18:46:10
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 332 ms / 2,000 ms
コード長 179 bytes
コンパイル時間 75 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 29,272 KB
最終ジャッジ日時 2024-07-07 08:40:01
合計ジャッジ時間 1,975 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
12,032 KB
testcase_01 AC 28 ms
12,160 KB
testcase_02 AC 25 ms
12,032 KB
testcase_03 AC 26 ms
12,160 KB
testcase_04 AC 25 ms
12,032 KB
testcase_05 AC 25 ms
12,160 KB
testcase_06 AC 26 ms
12,160 KB
testcase_07 AC 332 ms
29,272 KB
testcase_08 AC 31 ms
12,160 KB
testcase_09 AC 37 ms
12,160 KB
testcase_10 AC 29 ms
12,032 KB
testcase_11 AC 28 ms
12,032 KB
testcase_12 AC 330 ms
26,808 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

count = [0] * (2 * 10 ** 5 + 1)
for i in L:
    count[i] += 1
for i in range(1,M+1):
    print(i,count[i])
0