結果
| 問題 | No.810 割った余りの個数 |
| コンテスト | |
| ユーザー |
simamumu
|
| 提出日時 | 2019-04-12 21:27:30 |
| 言語 | Python3 (3.14.7 + numpy 2.5.2 + scipy 1.18.0 + ACL) |
| 結果 |
AC
不安定
|
| 実行時間 | 122 ms / 2,000 ms |
| + 803µs | |
| コード長 | 346 bytes |
| 記録 | |
| コンパイル時間 | 306 ms |
| コンパイル使用メモリ | 21,412 KB |
| 実行使用メモリ | 16,252 KB |
| 最終ジャッジ日時 | 2026-08-27 07:27:08 |
| 合計ジャッジ時間 | 6,046 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 30 |
ソースコード
from collections import defaultdict,deque
import sys,heapq,bisect,math,itertools,string,queue,datetime,random
sys.setrecursionlimit(10**8)
INF = float('inf')
mod = 10**9+7
eps = 10**-7
def inpl(): return list(map(int, input().split()))
def inpls(): return list(input().split())
L,R,M = inpl()
if R-L+1 >= M:
print(M)
else:
print(R-L+1)
simamumu