結果

問題 No.1352 Three Coins
ユーザー H3PO4H3PO4
提出日時 2021-01-17 13:42:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 161 ms / 2,000 ms
コード長 639 bytes
コンパイル時間 132 ms
コンパイル使用メモリ 82,344 KB
実行使用メモリ 94,696 KB
最終ジャッジ日時 2024-06-02 12:07:13
合計ジャッジ時間 3,533 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
53,508 KB
testcase_01 AC 40 ms
60,048 KB
testcase_02 AC 57 ms
66,384 KB
testcase_03 AC 76 ms
72,544 KB
testcase_04 AC 53 ms
65,024 KB
testcase_05 AC 130 ms
86,156 KB
testcase_06 AC 131 ms
85,280 KB
testcase_07 AC 34 ms
52,568 KB
testcase_08 AC 109 ms
83,304 KB
testcase_09 AC 62 ms
67,972 KB
testcase_10 AC 83 ms
75,412 KB
testcase_11 AC 84 ms
74,928 KB
testcase_12 AC 34 ms
53,064 KB
testcase_13 AC 68 ms
71,504 KB
testcase_14 AC 111 ms
82,004 KB
testcase_15 AC 74 ms
71,488 KB
testcase_16 AC 35 ms
52,316 KB
testcase_17 AC 48 ms
64,052 KB
testcase_18 AC 80 ms
73,504 KB
testcase_19 AC 36 ms
52,572 KB
testcase_20 AC 34 ms
53,632 KB
testcase_21 AC 141 ms
90,012 KB
testcase_22 AC 35 ms
53,540 KB
testcase_23 AC 33 ms
52,216 KB
testcase_24 AC 45 ms
62,856 KB
testcase_25 AC 34 ms
53,816 KB
testcase_26 AC 34 ms
52,816 KB
testcase_27 AC 34 ms
53,848 KB
testcase_28 AC 161 ms
93,072 KB
testcase_29 AC 47 ms
64,004 KB
testcase_30 AC 156 ms
94,696 KB
testcase_31 AC 42 ms
61,508 KB
testcase_32 AC 116 ms
94,112 KB
testcase_33 AC 34 ms
52,748 KB
testcase_34 AC 41 ms
60,100 KB
testcase_35 AC 43 ms
61,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd

A, B, C = map(int, input().split())

if gcd(gcd(A, B), C) != 1:
    print('INF')
    exit()

table = [False] * max(A * B, B * C, C * A)
L = len(table)
MAX = A * B * C

for i in range(MAX):
    if A * i >= L:
        break
    if table[A * i]:
        break
    for j in range(MAX):
        if A * i + B * j >= L:
            break
        if table[A * i + B * j]:
            break
        for k in range(MAX):
            if A * i + B * j + C * k >= L:
                break
            if table[A * i + B * j + C * k]:
                break
            table[A * i + B * j + C * k] = True
print(table.count(False))
0