結果

問題 No.1032 数数え
ユーザー tnodinotnodino
提出日時 2020-11-10 23:10:15
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 294 ms / 2,000 ms
コード長 160 bytes
コンパイル時間 84 ms
コンパイル使用メモリ 10,556 KB
実行使用メモリ 29,900 KB
最終ジャッジ日時 2023-09-30 00:14:10
合計ジャッジ時間 2,028 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 16 ms
9,600 KB
testcase_01 AC 16 ms
9,560 KB
testcase_02 AC 17 ms
9,604 KB
testcase_03 AC 17 ms
9,600 KB
testcase_04 AC 16 ms
9,596 KB
testcase_05 AC 16 ms
9,484 KB
testcase_06 AC 18 ms
9,604 KB
testcase_07 AC 294 ms
29,900 KB
testcase_08 AC 18 ms
9,656 KB
testcase_09 AC 27 ms
9,940 KB
testcase_10 AC 17 ms
9,568 KB
testcase_11 AC 17 ms
9,652 KB
testcase_12 AC 294 ms
27,220 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m = map(int,input().split())
l = list(map(int,input().split()))
ans = [0] * (10**5*2+1)
for i in l:
    ans[i] += 1
for i in range(1,m+1):
    print(i,ans[i])
0