結果
| 問題 | 
                            No.810 割った余りの個数
                             | 
                    
| コンテスト | |
| ユーザー | 
                             fV9TwBhUoa9S3eV
                         | 
                    
| 提出日時 | 2019-10-28 14:51:55 | 
| 言語 | Python3  (3.13.1 + numpy 2.2.1 + scipy 1.14.1)  | 
                    
| 結果 | 
                             
                                TLE
                                 
                             
                            
                         | 
                    
| 実行時間 | - | 
| コード長 | 239 bytes | 
| コンパイル時間 | 153 ms | 
| コンパイル使用メモリ | 12,672 KB | 
| 実行使用メモリ | 16,512 KB | 
| 最終ジャッジ日時 | 2024-09-14 21:12:42 | 
| 合計ジャッジ時間 | 4,564 ms | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge3 / judge5 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| other | AC * 20 TLE * 1 -- * 9 | 
ソースコード
# No.810 割った余りの個数
L, R, M = [int(s) for s in input().split()]
remainders = []
for i in range(L, R + 1):
    remainder = i % M
    if remainder not in remainders:
        remainders.append(remainder)
print(len(remainders))
            
            
            
        
            
fV9TwBhUoa9S3eV