結果
| 問題 | No.810 割った余りの個数 |
| コンテスト | |
| ユーザー |
fV9TwBhUoa9S3eV
|
| 提出日時 | 2019-10-28 14:51:55 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 239 bytes |
| 記録 | |
| コンパイル時間 | 594 ms |
| コンパイル使用メモリ | 20,956 KB |
| 実行使用メモリ | 21,884 KB |
| 最終ジャッジ日時 | 2026-04-04 15:06:54 |
| 合計ジャッジ時間 | 6,607 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| 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