結果

問題 No.1352 Three Coins
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2021-01-17 16:35:29
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 428 bytes
コンパイル時間 345 ms
コンパイル使用メモリ 82,536 KB
実行使用メモリ 94,208 KB
最終ジャッジ日時 2024-05-07 06:06:00
合計ジャッジ時間 4,073 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,480 KB
testcase_01 AC 45 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,480 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 37 ms
52,096 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 36 ms
51,712 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 37 ms
52,352 KB
testcase_20 AC 36 ms
52,096 KB
testcase_21 WA -
testcase_22 AC 36 ms
52,224 KB
testcase_23 AC 36 ms
52,352 KB
testcase_24 WA -
testcase_25 AC 36 ms
52,096 KB
testcase_26 AC 36 ms
52,224 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 122 ms
93,184 KB
testcase_31 AC 53 ms
63,104 KB
testcase_32 AC 116 ms
94,208 KB
testcase_33 AC 36 ms
52,096 KB
testcase_34 AC 46 ms
60,672 KB
testcase_35 AC 47 ms
60,288 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