結果

問題 No.1352 Three Coins
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2021-01-17 16:41:48
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 419 bytes
コンパイル時間 250 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 187,392 KB
最終ジャッジ日時 2024-11-29 20:11:10
合計ジャッジ時間 47,846 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 TLE -
testcase_02 TLE -
testcase_03 TLE -
testcase_04 TLE -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 38 ms
57,472 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 38 ms
142,976 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 38 ms
142,976 KB
testcase_17 TLE -
testcase_18 WA -
testcase_19 AC 39 ms
52,352 KB
testcase_20 AC 39 ms
51,968 KB
testcase_21 WA -
testcase_22 AC 38 ms
52,224 KB
testcase_23 AC 39 ms
52,224 KB
testcase_24 TLE -
testcase_25 AC 39 ms
51,712 KB
testcase_26 AC 38 ms
52,224 KB
testcase_27 TLE -
testcase_28 WA -
testcase_29 TLE -
testcase_30 AC 120 ms
93,184 KB
testcase_31 TLE -
testcase_32 AC 113 ms
94,208 KB
testcase_33 AC 39 ms
51,968 KB
testcase_34 TLE -
testcase_35 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
a,b,c = map(int,input().split())
if math.gcd(a,math.gcd(b,c)) != 1:
    print("INF")
    exit()

M = 4*10**6+5
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