結果

問題 No.1032 数数え
ユーザー dangodango
提出日時 2023-06-11 14:55:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 136 ms / 2,000 ms
コード長 202 bytes
コンパイル時間 347 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 107,904 KB
最終ジャッジ日時 2024-06-11 01:00:43
合計ジャッジ時間 1,734 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
51,840 KB
testcase_01 AC 36 ms
52,352 KB
testcase_02 AC 36 ms
52,480 KB
testcase_03 AC 37 ms
51,712 KB
testcase_04 AC 34 ms
51,840 KB
testcase_05 AC 34 ms
52,480 KB
testcase_06 AC 35 ms
51,968 KB
testcase_07 AC 136 ms
107,904 KB
testcase_08 AC 35 ms
52,220 KB
testcase_09 AC 53 ms
67,200 KB
testcase_10 AC 34 ms
52,864 KB
testcase_11 AC 33 ms
51,584 KB
testcase_12 AC 121 ms
105,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map(int, input().split())
L = list(map(int, input().split()))
K = [0] * max(L)
for I in L:
  K[I - 1] += 1
for T in range(M):
  try:
    print(f"{T + 1} {K[T]}")
  except:
    print(f"{T + 1} 0")
0