結果
問題 | No.2440 Accuracy of Integer Division Approximate Functions |
ユーザー | 👑 Mizar |
提出日時 | 2023-08-17 20:15:54 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 259 ms / 2,000 ms |
コード長 | 859 bytes |
コンパイル時間 | 269 ms |
コンパイル使用メモリ | 82,176 KB |
実行使用メモリ | 78,600 KB |
最終ジャッジ日時 | 2024-06-02 09:58:31 |
合計ジャッジ時間 | 5,736 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 38 ms
52,096 KB |
testcase_01 | AC | 249 ms
77,204 KB |
testcase_02 | AC | 257 ms
77,832 KB |
testcase_03 | AC | 239 ms
78,244 KB |
testcase_04 | AC | 259 ms
77,996 KB |
testcase_05 | AC | 246 ms
77,936 KB |
testcase_06 | AC | 163 ms
77,312 KB |
testcase_07 | AC | 164 ms
77,056 KB |
testcase_08 | AC | 170 ms
77,184 KB |
testcase_09 | AC | 174 ms
77,312 KB |
testcase_10 | AC | 173 ms
77,184 KB |
testcase_11 | AC | 256 ms
78,200 KB |
testcase_12 | AC | 254 ms
78,068 KB |
testcase_13 | AC | 249 ms
78,600 KB |
testcase_14 | AC | 248 ms
78,388 KB |
testcase_15 | AC | 251 ms
78,332 KB |
testcase_16 | AC | 192 ms
77,568 KB |
testcase_17 | AC | 205 ms
77,696 KB |
testcase_18 | AC | 199 ms
77,568 KB |
testcase_19 | AC | 197 ms
77,696 KB |
testcase_20 | AC | 199 ms
77,824 KB |
ソースコード
# calc sum_{i=0}^{n-1} floor((ai + b) / m) def floor_sum_unsigned(n: int, m: int, a: int, b: int) -> int: assert n >= 0 and m > 0 and a >= 0 and b >= 0 ans = 0 while True: if a >= m: ans += (n * (n - 1) >> 1) * (a // m) a %= m if b >= m: ans += n * (b // m) b %= m y_max = a * n + b if y_max < m: return ans n, b, m, a = y_max // m, y_max % m, a, m def solve(n: int, d: int, m: int, s: int) -> int: assert n >= 0 and d > 0 and m >= 0 and s >= 0 pow2s, dm = 1 << s, d * m if pow2s != dm: n = min(n, d * pow2s // abs(dm - pow2s)) n -= abs(floor_sum_unsigned(n + 1, pow2s, m, 0) - floor_sum_unsigned(n + 1, d, 1, 0)) return n for _ in range(int(input())): n, d, m, s = map(int, input().split()) print(solve(n, d, m, s))