結果
問題 | No.752 mod数列 |
ユーザー | 👑 hos.lyric |
提出日時 | 2019-01-31 12:40:48 |
言語 | D (dmd 2.106.1) |
結果 |
AC
|
実行時間 | 500 ms / 2,000 ms |
コード長 | 2,247 bytes |
コンパイル時間 | 1,107 ms |
コンパイル使用メモリ | 121,416 KB |
実行使用メモリ | 92,916 KB |
最終ジャッジ日時 | 2024-06-13 04:08:23 |
合計ジャッジ時間 | 13,774 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 133 ms
80,904 KB |
testcase_01 | AC | 135 ms
81,160 KB |
testcase_02 | AC | 134 ms
82,044 KB |
testcase_03 | AC | 134 ms
80,836 KB |
testcase_04 | AC | 133 ms
80,808 KB |
testcase_05 | AC | 133 ms
80,996 KB |
testcase_06 | AC | 133 ms
81,216 KB |
testcase_07 | AC | 134 ms
81,792 KB |
testcase_08 | AC | 132 ms
80,732 KB |
testcase_09 | AC | 134 ms
80,944 KB |
testcase_10 | AC | 137 ms
81,340 KB |
testcase_11 | AC | 136 ms
81,000 KB |
testcase_12 | AC | 136 ms
81,204 KB |
testcase_13 | AC | 136 ms
80,924 KB |
testcase_14 | AC | 137 ms
81,548 KB |
testcase_15 | AC | 453 ms
85,096 KB |
testcase_16 | AC | 457 ms
86,160 KB |
testcase_17 | AC | 500 ms
92,916 KB |
testcase_18 | AC | 469 ms
84,424 KB |
testcase_19 | AC | 470 ms
85,244 KB |
testcase_20 | AC | 483 ms
91,544 KB |
testcase_21 | AC | 482 ms
91,464 KB |
testcase_22 | AC | 482 ms
85,408 KB |
testcase_23 | AC | 486 ms
85,080 KB |
testcase_24 | AC | 485 ms
84,844 KB |
testcase_25 | AC | 231 ms
83,232 KB |
testcase_26 | AC | 414 ms
84,648 KB |
testcase_27 | AC | 331 ms
82,700 KB |
testcase_28 | AC | 391 ms
85,944 KB |
testcase_29 | AC | 471 ms
85,460 KB |
testcase_30 | AC | 475 ms
84,792 KB |
testcase_31 | AC | 134 ms
81,428 KB |
testcase_32 | AC | 134 ms
80,888 KB |
testcase_33 | AC | 134 ms
81,232 KB |
ソースコード
import std.conv, std.functional, std.stdio, std.string; import std.algorithm, std.array, std.bigint, std.container, std.math, std.numeric, std.range, std.regex, std.typecons; import core.bitop; class EOFException : Throwable { this() { super("EOF"); } } string[] tokens; string readToken() { for (; tokens.empty; ) { if (stdin.eof) { throw new EOFException; } tokens = readln.split; } auto token = tokens.front; tokens.popFront; return token; } int readInt() { return readToken.to!int; } long readLong() { return readToken.to!long; } real readReal() { return readToken.to!real; } bool chmin(T)(ref T t, in T f) { if (t > f) { t = f; return true; } else { return false; } } bool chmax(T)(ref T t, in T f) { if (t < f) { t = f; return true; } else { return false; } } int binarySearch(alias pred, T)(in T[] as) { int lo = -1, hi = cast(int)(as.length); for (; lo + 1 < hi; ) { const mid = (lo + hi) >> 1; (unaryFun!pred(as[mid]) ? hi : lo) = mid; } return hi; } int lowerBound(T)(in T[] as, T val) { return as.binarySearch!(a => (a >= val)); } int upperBound(T)(in T[] as, T val) { return as.binarySearch!(a => (a > val)); } enum B = 10^^7; enum C = 10^^2; long P; int Q; long[] L, R; void main() { try { for (; ; ) { P = readLong(); Q = readInt(); L = new long[Q]; R = new long[Q]; foreach (q; 0 .. Q) { L[q] = readLong(); R[q] = readLong(); } auto sum = new long[B + 2]; sum[1] = 0; foreach (n; 1 .. B + 1) { sum[n + 1] = sum[n] + P % n; } foreach (q; 0 .. Q) { long ans; // 1 <= n <= B { const a = cast(int)(max(L[q], 1)); const b = cast(int)(min(R[q], B)); if (a <= b) { ans += (sum[b + 1] - sum[a]); } } // floor(P / n) = c // c n <= P < (c + 1) n foreach (c; 0 .. C + 1) { const a = max(P / (c + 1) + 1, L[q], B + 1); const b = (c == 0) ? R[q] : min(P / c, R[q]); if (a <= b) { ans += P * (b - a + 1); ans -= c * ((a + b) * (b - a + 1) / 2); } } writeln(ans); } } } catch (EOFException e) { } }