結果

問題 No.1352 Three Coins
ユーザー H3PO4H3PO4
提出日時 2021-01-17 13:30:03
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 639 bytes
コンパイル時間 721 ms
コンパイル使用メモリ 82,504 KB
実行使用メモリ 94,336 KB
最終ジャッジ日時 2024-11-29 20:05:58
合計ジャッジ時間 3,613 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,328 KB
testcase_01 AC 39 ms
52,096 KB
testcase_02 AC 56 ms
63,872 KB
testcase_03 AC 55 ms
63,104 KB
testcase_04 AC 50 ms
61,824 KB
testcase_05 AC 63 ms
65,920 KB
testcase_06 AC 114 ms
75,904 KB
testcase_07 AC 38 ms
51,328 KB
testcase_08 AC 126 ms
78,208 KB
testcase_09 AC 56 ms
63,872 KB
testcase_10 AC 66 ms
66,304 KB
testcase_11 AC 53 ms
61,824 KB
testcase_12 AC 38 ms
51,328 KB
testcase_13 AC 58 ms
64,256 KB
testcase_14 AC 125 ms
77,312 KB
testcase_15 AC 57 ms
64,768 KB
testcase_16 AC 38 ms
51,584 KB
testcase_17 AC 48 ms
61,056 KB
testcase_18 AC 58 ms
64,384 KB
testcase_19 AC 38 ms
51,712 KB
testcase_20 AC 38 ms
51,584 KB
testcase_21 AC 162 ms
84,992 KB
testcase_22 AC 38 ms
51,968 KB
testcase_23 AC 39 ms
51,712 KB
testcase_24 AC 49 ms
61,184 KB
testcase_25 AC 39 ms
52,224 KB
testcase_26 AC 38 ms
51,584 KB
testcase_27 WA -
testcase_28 AC 120 ms
77,696 KB
testcase_29 WA -
testcase_30 AC 182 ms
94,336 KB
testcase_31 WA -
testcase_32 AC 130 ms
93,440 KB
testcase_33 AC 38 ms
51,328 KB
testcase_34 AC 39 ms
51,456 KB
testcase_35 AC 38 ms
51,712 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] * min(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