結果
問題 | No.1358 [Zelkova 2nd Tune *] 語るなら枚数を... |
ユーザー | 👑 Kazun |
提出日時 | 2020-09-09 14:31:42 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,177 bytes |
コンパイル時間 | 142 ms |
コンパイル使用メモリ | 82,180 KB |
実行使用メモリ | 76,096 KB |
最終ジャッジ日時 | 2024-07-23 11:53:28 |
合計ジャッジ時間 | 1,960 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 80 ms
76,096 KB |
testcase_01 | AC | 44 ms
60,872 KB |
testcase_02 | AC | 44 ms
60,252 KB |
testcase_03 | AC | 38 ms
54,456 KB |
testcase_04 | AC | 43 ms
60,876 KB |
testcase_05 | AC | 45 ms
60,392 KB |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
ソースコード
def f(a, b): """ ax + by = gcd(a,b) = d となる (x,y,d) を返す """ if b == 0: return (1, 0, a) q, r = a // b, a % b x, y, d = f(b, r) s, t = y, x - q * y return s, t, d #================================================ from math import gcd T=int(input()) assert 1<=T<=10,"Tが制約違反(T={})".format(T) X=[0]*T for i in range(T): N,K,H,Y=map(int,input().split()) assert 1<=N<=10**7,"[第{}テストケース]Nが制約違反(N={})".format(i+1,N) assert 1<=K<=10**7,"[第{}テストケース]Kが制約違反(N={})".format(i+1,K) assert 1<=H<=10**7,"[第{}テストケース]Hが制約違反(N={})".format(i+1,H) assert min(Y//N,Y//K,Y//H)<=10**7,"[第{}テストケース]計算量が多すぎ(N={},K={},H={},Y={})".format(i+1,N,K,H,Y) N,K,H=sorted([N,K,H],reverse=True) Mod=10**9+7 Ans=0 g=gcd(K,H) A,B=K//g,H//g for x in range(0,Y//N+1): beta=Y-N*x if beta%g: continue S=beta//g p,q,_=f(A,B) upper=S*q//A lower=(-S*p+(B-1))//B Ans+=upper-lower+1 Ans%=Mod X[i]=Ans print("\n".join(map(str,X)))