結果
問題 | No.1352 Three Coins |
ユーザー |
![]() |
提出日時 | 2025-03-20 21:06:29 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,055 bytes |
コンパイル時間 | 193 ms |
コンパイル使用メモリ | 82,336 KB |
実行使用メモリ | 71,536 KB |
最終ジャッジ日時 | 2025-03-20 21:06:36 |
合計ジャッジ時間 | 3,021 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 32 WA * 2 |
ソースコード
import mathdef compute_gcd(a, b, c):return math.gcd(a, math.gcd(b, c))A, B, C = map(int, input().split())d = compute_gcd(A, B, C)if d != 1:print("INF")else:m = min(A, B, C)# Use a maximum size to avoid memory issues. 1e6 is chosen based on problem constraintsmax_n = 10**6dp = [False] * (max_n + 1)dp[0] = True # base case: 0 can be formedconsecutive = 0result = 0for i in range(1, max_n + 1):# Check if current i can be formed by any of the coinscan_form = Falseif i >= A and dp[i - A]:can_form = Trueif not can_form and i >= B and dp[i - B]:can_form = Trueif not can_form and i >= C and dp[i - C]:can_form = Truedp[i] = can_formif can_form:consecutive += 1if consecutive >= m:break # All subsequent numbers can be formedelse:consecutive = 0result += 1 # Count numbers that cannot be formedprint(result)