結果

問題 No.1032 数数え
ユーザー RK PythonRK Python
提出日時 2020-06-21 16:25:42
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 425 ms / 2,000 ms
コード長 179 bytes
コンパイル時間 129 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 29,548 KB
最終ジャッジ日時 2024-07-03 18:05:30
合計ジャッジ時間 2,404 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,880 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 29 ms
10,880 KB
testcase_04 AC 30 ms
10,880 KB
testcase_05 AC 30 ms
10,880 KB
testcase_06 AC 30 ms
10,752 KB
testcase_07 AC 425 ms
29,548 KB
testcase_08 AC 29 ms
10,752 KB
testcase_09 AC 44 ms
11,136 KB
testcase_10 AC 29 ms
10,752 KB
testcase_11 AC 29 ms
10,880 KB
testcase_12 AC 414 ms
26,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M = [int(i) for i in input().split()]
L = [int(i) for i in input().split()]
n = [0]*(M)
for l in L:
    if 0 < l <= M:
        n[l-1] += 1
for i in range(M):
    print(i+1,n[i])
0