結果
問題 | No.1358 [Zelkova 2nd Tune *] 語るなら枚数を... |
ユーザー | GER_chen |
提出日時 | 2021-01-22 21:59:13 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 777 bytes |
コンパイル時間 | 342 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 17,696 KB |
最終ジャッジ日時 | 2024-06-08 14:46:51 |
合計ジャッジ時間 | 4,616 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 228 ms
17,696 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 31 ms
10,880 KB |
testcase_05 | AC | 32 ms
10,880 KB |
testcase_06 | TLE | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
ソースコード
#yuki-1358 from math import gcd mod = 10**9+7 T = int(input()) #20以下 def num(a, b, s): g = gcd(a, b) if s%g: return 0 if g > 1: return num(a//g, b//g, s//g) ini = s*pow(a, -1, b)%b return (s-a*ini)//(a*b)+1 #testcases for _ in range(T): N, K, H, Y = map(int, input().split()) g = gcd(N, gcd(K, H)) if Y%g: print(0) else: N, K, H, Y = N//g, K//g, H//g, Y//g g = gcd(K, H) if g > 1: ini = Y*pow(N, -1, g)%g ans = 0 while ini <= Y: ans += num(K, H, Y-N*ini) ans %= mod ini += g print(ans) if g == 1: ans = sum(num(K, H, Y-i*N) for i in range(Y//N+1)) print(ans)