結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,712 KB
testcase_01 AC 36 ms
52,224 KB
testcase_02 AC 51 ms
63,360 KB
testcase_03 AC 48 ms
63,872 KB
testcase_04 AC 45 ms
62,208 KB
testcase_05 AC 53 ms
65,920 KB
testcase_06 AC 97 ms
75,392 KB
testcase_07 AC 41 ms
51,840 KB
testcase_08 AC 102 ms
78,208 KB
testcase_09 AC 53 ms
64,128 KB
testcase_10 AC 59 ms
65,792 KB
testcase_11 AC 48 ms
62,464 KB
testcase_12 AC 34 ms
52,224 KB
testcase_13 WA -
testcase_14 AC 95 ms
77,056 KB
testcase_15 AC 53 ms
64,768 KB
testcase_16 AC 35 ms
51,840 KB
testcase_17 AC 42 ms
60,416 KB
testcase_18 AC 52 ms
63,872 KB
testcase_19 AC 34 ms
51,584 KB
testcase_20 AC 35 ms
52,096 KB
testcase_21 AC 125 ms
85,248 KB
testcase_22 AC 34 ms
51,712 KB
testcase_23 AC 34 ms
51,840 KB
testcase_24 AC 42 ms
62,208 KB
testcase_25 AC 35 ms
51,584 KB
testcase_26 AC 35 ms
51,712 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 156 ms
94,592 KB
testcase_31 WA -
testcase_32 AC 117 ms
93,184 KB
testcase_33 AC 36 ms
51,584 KB
testcase_34 AC 35 ms
51,712 KB
testcase_35 AC 36 ms
51,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd

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

if gcd(A, B) != 1 and gcd(B, C) != 1 and gcd(C, A) != 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