結果

問題 No.1352 Three Coins
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2021-01-17 13:27:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 252 ms / 2,000 ms
コード長 426 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 82,320 KB
実行使用メモリ 231,184 KB
最終ジャッジ日時 2024-12-23 09:31:10
合計ジャッジ時間 2,907 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
53,820 KB
testcase_01 AC 38 ms
52,592 KB
testcase_02 AC 43 ms
60,748 KB
testcase_03 AC 39 ms
61,296 KB
testcase_04 AC 39 ms
60,736 KB
testcase_05 AC 45 ms
65,784 KB
testcase_06 AC 47 ms
69,148 KB
testcase_07 AC 33 ms
51,952 KB
testcase_08 AC 49 ms
68,884 KB
testcase_09 AC 40 ms
62,144 KB
testcase_10 AC 43 ms
64,408 KB
testcase_11 AC 41 ms
62,808 KB
testcase_12 AC 33 ms
52,996 KB
testcase_13 AC 42 ms
62,580 KB
testcase_14 AC 51 ms
69,332 KB
testcase_15 AC 44 ms
62,828 KB
testcase_16 AC 34 ms
54,100 KB
testcase_17 AC 40 ms
61,044 KB
testcase_18 AC 54 ms
73,968 KB
testcase_19 AC 33 ms
53,324 KB
testcase_20 AC 33 ms
52,196 KB
testcase_21 AC 56 ms
74,404 KB
testcase_22 AC 33 ms
53,348 KB
testcase_23 AC 40 ms
52,932 KB
testcase_24 AC 43 ms
61,312 KB
testcase_25 AC 38 ms
52,728 KB
testcase_26 AC 37 ms
53,548 KB
testcase_27 AC 36 ms
54,128 KB
testcase_28 AC 62 ms
79,704 KB
testcase_29 AC 41 ms
61,896 KB
testcase_30 AC 155 ms
211,336 KB
testcase_31 AC 45 ms
66,680 KB
testcase_32 AC 252 ms
231,184 KB
testcase_33 AC 34 ms
52,648 KB
testcase_34 AC 33 ms
53,176 KB
testcase_35 AC 34 ms
52,868 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

"""


"""

import sys
from sys import stdin
import math

A,B,C = map(int,stdin.readline().split())

if math.gcd(math.gcd(A,B),C) != 1:
    print ("INF")
    sys.exit()

mov = max(A,B,C)
dp = [False] * mov + [True]
ans = 0
streak = 0

while True:

    if streak > mov:
        break

    dp.append(dp[-A] or dp[-B] or dp[-C])
    if dp[-1] == True:
        streak += 1
    else:
        streak = 0
        ans += 1
print (ans)
0