結果
問題 | No.1899 L1 Cafe |
ユーザー | Shirotsume |
提出日時 | 2021-12-31 14:04:27 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 602 bytes |
コンパイル時間 | 244 ms |
コンパイル使用メモリ | 82,048 KB |
実行使用メモリ | 80,512 KB |
最終ジャッジ日時 | 2024-09-15 23:58:27 |
合計ジャッジ時間 | 3,143 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
ソースコード
def floor_sum(n,m,a,b): ans=0 if a>=m: ans+=(n-1)*n*(a//m)//2 a%=m if b>=m: ans+=n*(b//m) b%=m y_max=(a*n+b)//m x_max=(y_max*m-b) if y_max==0: return ans ans+=(n-(x_max+a-1)//a)*y_max ans+=floor_sum(y_max,a,m,(a-x_max%a)%a) return ans def solve(n, a, b): na = floor_sum(n // a + 1, 1, -a, n) - n nb = floor_sum(n + 1, b, -1, n) - n // b nab = floor_sum(n // a + 1, b, -a, n) - n // b return (na + nb - 2 * nab) for _ in range(int(input())): n, a, b = map(int,input().split()) print(solve(n, a, b))