結果
問題 | No.1899 L1 Cafe |
ユーザー | mkawa2 |
提出日時 | 2023-12-13 12:18:51 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 237 ms / 2,000 ms |
コード長 | 1,493 bytes |
コンパイル時間 | 438 ms |
コンパイル使用メモリ | 82,432 KB |
実行使用メモリ | 77,980 KB |
最終ジャッジ日時 | 2024-09-27 05:19:45 |
合計ジャッジ時間 | 5,924 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 37 ms
52,608 KB |
testcase_01 | AC | 236 ms
77,980 KB |
testcase_02 | AC | 222 ms
77,496 KB |
testcase_03 | AC | 170 ms
77,768 KB |
testcase_04 | AC | 184 ms
76,928 KB |
testcase_05 | AC | 148 ms
77,496 KB |
testcase_06 | AC | 237 ms
77,616 KB |
testcase_07 | AC | 214 ms
77,952 KB |
testcase_08 | AC | 212 ms
77,540 KB |
testcase_09 | AC | 204 ms
77,824 KB |
testcase_10 | AC | 224 ms
77,412 KB |
testcase_11 | AC | 221 ms
77,808 KB |
testcase_12 | AC | 236 ms
77,788 KB |
ソースコード
import sys # sys.setrecursionlimit(1000005) # sys.set_int_max_str_digits(200005) int1 = lambda x: int(x)-1 pDB = lambda *x: print(*x, end="\n", file=sys.stderr) p2D = lambda x: print(*x, sep="\n", end="\n\n", file=sys.stderr) def II(): return int(sys.stdin.readline()) def LI(): return list(map(int, sys.stdin.readline().split())) def LLI(rows_number): return [LI() for _ in range(rows_number)] def LI1(): return list(map(int1, sys.stdin.readline().split())) def LLI1(rows_number): return [LI1() for _ in range(rows_number)] def SI(): return sys.stdin.readline().rstrip() dij = [(0, 1), (-1, 0), (0, -1), (1, 0)] # dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)] # inf = -1-(-1 << 31) inf = -1-(-1 << 62) # md = 10**9+7 md = 998244353 def floor_sum(n, m, a, b): ans = 0 if a < 0: ans += n*(n-1)*(a//m)//2 a %= m if b < 0: ans += n*(b//m) b %= m while True: if a >= m: ans += n*(n-1)*(a//m)//2 a %= m if b >= m: ans += n*(b//m) b %= m y_max = a*n+b if y_max < m: break n, b, m, a, = y_max//m, y_max%m, a, m return ans # y=-x+N # y=-An+N # y=(-An+N)/1 # y=-x+N # Bm=-x+N # m=(-x+N)/B # y=-x+N # Bm=-An+N # m=(-An+N)/B def solve(): N, A, B = LI() ans = floor_sum((N+A-1)//A, 1, -A, N) ans += floor_sum(N, B, -1, N) ans -= floor_sum((N+A-1)//A, B, -A, N) print(ans-N) for _ in range(II()): solve()