結果
| 問題 | 
                            No.1032 数数え
                             | 
                    
| ユーザー | 
                             Rute
                         | 
                    
| 提出日時 | 2020-06-23 11:09:06 | 
| 言語 | Python3  (3.13.1 + numpy 2.2.1 + scipy 1.14.1)  | 
                    
| 結果 | 
                             
                                AC
                                 
                             
                            
                         | 
                    
| 実行時間 | 436 ms / 2,000 ms | 
| コード長 | 193 bytes | 
| コンパイル時間 | 101 ms | 
| コンパイル使用メモリ | 12,544 KB | 
| 実行使用メモリ | 29,544 KB | 
| 最終ジャッジ日時 | 2024-07-03 19:12:18 | 
| 合計ジャッジ時間 | 2,353 ms | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge1 / judge3 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 3 | 
| other | AC * 10 | 
ソースコード
n,m = map(int,input().split())
a = list(map(int,input().split()))
ls = [0 for i in range(m)]
for i in range(n):
    if a[i] <= m:
        ls[a[i]-1] += 1
for i in range(m):
    print(i+1,ls[i])
            
            
            
        
            
Rute