結果

問題 No.1352 Three Coins
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2021-01-17 16:35:29
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 428 bytes
コンパイル時間 177 ms
コンパイル使用メモリ 82,320 KB
実行使用メモリ 93,952 KB
最終ジャッジ日時 2024-11-29 20:24:48
合計ジャッジ時間 3,947 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,028 KB
testcase_01 AC 49 ms
59,392 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 39 ms
52,096 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 39 ms
51,712 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 40 ms
51,840 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 39 ms
51,968 KB
testcase_20 AC 40 ms
51,956 KB
testcase_21 WA -
testcase_22 AC 39 ms
51,968 KB
testcase_23 AC 40 ms
52,000 KB
testcase_24 WA -
testcase_25 AC 39 ms
51,456 KB
testcase_26 AC 40 ms
51,924 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 145 ms
92,800 KB
testcase_31 AC 56 ms
62,464 KB
testcase_32 AC 148 ms
93,952 KB
testcase_33 AC 39 ms
51,584 KB
testcase_34 AC 51 ms
60,032 KB
testcase_35 AC 51 ms
60,536 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(2000):
        if a*j >= M:
            break
        for k in range(2000):
            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