結果
問題 | No.1358 [Zelkova 2nd Tune *] 語るなら枚数を... |
ユーザー | ayaoni |
提出日時 | 2021-01-24 00:19:35 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,120 bytes |
コンパイル時間 | 235 ms |
コンパイル使用メモリ | 81,844 KB |
実行使用メモリ | 83,416 KB |
最終ジャッジ日時 | 2024-06-10 10:43:28 |
合計ジャッジ時間 | 5,441 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 76 ms
82,592 KB |
testcase_01 | AC | 43 ms
59,888 KB |
testcase_02 | AC | 45 ms
61,028 KB |
testcase_03 | AC | 39 ms
58,548 KB |
testcase_04 | AC | 44 ms
61,288 KB |
testcase_05 | AC | 46 ms
62,808 KB |
testcase_06 | AC | 153 ms
76,668 KB |
testcase_07 | AC | 122 ms
76,244 KB |
testcase_08 | AC | 172 ms
77,232 KB |
testcase_09 | AC | 130 ms
76,844 KB |
testcase_10 | AC | 158 ms
77,624 KB |
testcase_11 | TLE | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
ソースコード
import sys from math import gcd sys.setrecursionlimit(10**7) def I(): return int(sys.stdin.readline().rstrip()) def MI(): return map(int,sys.stdin.readline().rstrip().split()) def LI(): return list(map(int,sys.stdin.readline().rstrip().split())) def LI2(): return list(map(int,sys.stdin.readline().rstrip())) def S(): return sys.stdin.readline().rstrip() def LS(): return list(sys.stdin.readline().rstrip().split()) def LS2(): return list(sys.stdin.readline().rstrip()) def ext_gcd(a, b): # a*x+b*y == gcd(a,b) たる gcd(a,b),x,y if b > 0: d,x,y = ext_gcd(b,a % b) return d,y,x-(a//b)*y return a,1,0 T = I() for _ in range(T): N,K,H,Y = MI() # Nを最大としてよい M = max(N,K,H) if M == K: N,K = K,N elif M == H: N,H = H,N g = gcd(K,H) K //= g H //= g ans = 0 for i in range(Y//N+1): Z = Y-N*i if Z % g != 0: continue Z //= g # K*j+H*k == Z の自然数解の個数 G,a,b = ext_gcd(K,H) a *= Z b *= Z ans += max(1+b//K-(-a+H-1)//H,0) print(ans)