結果

問題 No.1352 Three Coins
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2021-01-17 16:37:41
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 440 bytes
コンパイル時間 240 ms
コンパイル使用メモリ 82,088 KB
実行使用メモリ 94,620 KB
最終ジャッジ日時 2024-05-07 05:49:25
合計ジャッジ時間 3,868 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,464 KB
testcase_01 AC 42 ms
59,584 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 35 ms
53,464 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 35 ms
53,604 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 35 ms
52,524 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 35 ms
52,496 KB
testcase_20 AC 34 ms
53,896 KB
testcase_21 WA -
testcase_22 AC 36 ms
53,468 KB
testcase_23 AC 35 ms
52,548 KB
testcase_24 WA -
testcase_25 AC 37 ms
52,076 KB
testcase_26 AC 37 ms
52,568 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 112 ms
93,264 KB
testcase_31 AC 50 ms
63,868 KB
testcase_32 AC 111 ms
94,620 KB
testcase_33 AC 36 ms
52,464 KB
testcase_34 AC 44 ms
60,840 KB
testcase_35 AC 47 ms
61,588 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
a,b,c = map(int,input().split())
if math.gcd(a,math.gcd(b,c)) != 1:
    print("INF")
    exit()
l = sorted([a,b,c])
M = l[1]*l[2]+1
dp = [0]*M
for i in range(3):
    for j in range((M+a-1)//a):
        if a*j >= M:
            break
        for k in range((M+b-1)//b):
            if a*j + b*k >= M:
                break
            dp[a*j+b*k] = 1
    a,b,c = b,c,a
ans = 0
for i in range(1,M):
    ans += 1-dp[i]
print(ans)

0