結果

問題 No.1032 数数え
ユーザー anastaanasta
提出日時 2021-03-25 21:45:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 122 ms / 2,000 ms
コード長 183 bytes
コンパイル時間 323 ms
コンパイル使用メモリ 82,156 KB
実行使用メモリ 107,780 KB
最終ジャッジ日時 2024-05-05 10:48:18
合計ジャッジ時間 1,952 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
51,904 KB
testcase_01 AC 33 ms
52,152 KB
testcase_02 AC 34 ms
52,408 KB
testcase_03 AC 34 ms
52,276 KB
testcase_04 AC 33 ms
52,332 KB
testcase_05 AC 34 ms
53,504 KB
testcase_06 AC 34 ms
53,012 KB
testcase_07 AC 122 ms
107,780 KB
testcase_08 AC 36 ms
53,296 KB
testcase_09 AC 49 ms
67,104 KB
testcase_10 AC 36 ms
53,252 KB
testcase_11 AC 35 ms
51,940 KB
testcase_12 AC 118 ms
107,044 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
lst = [0] * m

for num in list(map(int, input().split())):
    if num <= m:
        lst[num - 1] += 1
for i in range(m):
    print(f'{i+1} {lst[i]}')
0