結果
問題 | No.810 割った余りの個数 |
ユーザー |
![]() |
提出日時 | 2019-04-12 21:45:54 |
言語 | D (dmd 2.109.1) |
結果 |
AC
|
実行時間 | 1 ms / 2,000 ms |
コード長 | 1,333 bytes |
コンパイル時間 | 724 ms |
コンパイル使用メモリ | 108,400 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-22 00:37:34 |
合計ジャッジ時間 | 1,814 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 30 |
ソースコード
import std.stdio, std.conv, std.functional, std.string;import std.algorithm, std.array, std.container, std.range, std.typecons;import std.numeric, std.math, std.random;import core.bitop;string FMT_F = "%.10f";static string[] s_rd;T RD(T = long)() { while(!s_rd.length) s_rd = readln.chomp.split; string res = s_rd[0]; s_rd.popFront; return res.to!T; }string RDR()() { return readln.chomp; }T[] ARR(T = long)(in string str, T fix = 0) { auto r = str.split.to!(T[]); r[] += fix; return r; }size_t[] MAKE_IDX(alias less = "a < b", Range)(Range range) { auto idx = new size_t[](range.length); makeIndex!(less)(range, idx); return idx;}size_t MIN_POS(alias less = "a < b", Range)(Range range) { auto r = minPos!(less)(range); return range.length - r.length; }bool inside(T)(T x, T b, T e) { return x >= b && x < e; }bool minimize(T)(ref T x, T y) { if (x > y) { x = y; return true; } else { return false; } }bool maximize(T)(ref T x, T y) { if (x < y) { x = y; return true; } else { return false; } }long mod = 10^^9 + 7;void moda(ref long x, long y) { x = (x + y) % mod; }void mods(ref long x, long y) { x = ((x + mod) - (y % mod)) % mod; }void modm(ref long x, long y) { x = (x * y) % mod; }void main(){auto L = RD;auto R = RD;auto M = RD;writeln(min(R - L + 1, M));stdout.flush();debug readln();}