結果
| 問題 |
No.810 割った余りの個数
|
| コンテスト | |
| ユーザー |
fV9TwBhUoa9S3eV
|
| 提出日時 | 2019-10-28 14:48:45 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 209 bytes |
| コンパイル時間 | 256 ms |
| コンパイル使用メモリ | 12,544 KB |
| 実行使用メモリ | 16,640 KB |
| 最終ジャッジ日時 | 2024-09-14 21:12:37 |
| 合計ジャッジ時間 | 4,625 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| 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):
if i % M not in remainders:
remainders.append(i % M)
print(len(remainders))
fV9TwBhUoa9S3eV