結果

問題 No.1352 Three Coins
ユーザー GER_chenGER_chen
提出日時 2021-01-17 13:17:21
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 369 bytes
コンパイル時間 458 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 17,696 KB
最終ジャッジ日時 2024-05-07 05:52:04
合計ジャッジ時間 12,329 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
17,696 KB
testcase_01 AC 32 ms
10,752 KB
testcase_02 AC 47 ms
10,880 KB
testcase_03 AC 37 ms
10,752 KB
testcase_04 AC 46 ms
10,752 KB
testcase_05 AC 53 ms
10,880 KB
testcase_06 AC 297 ms
10,880 KB
testcase_07 AC 32 ms
10,752 KB
testcase_08 AC 1,586 ms
10,752 KB
testcase_09 AC 72 ms
10,880 KB
testcase_10 AC 413 ms
10,880 KB
testcase_11 AC 34 ms
10,752 KB
testcase_12 AC 31 ms
10,752 KB
testcase_13 AC 42 ms
10,880 KB
testcase_14 AC 470 ms
10,880 KB
testcase_15 AC 38 ms
10,752 KB
testcase_16 AC 32 ms
10,752 KB
testcase_17 AC 49 ms
10,752 KB
testcase_18 AC 241 ms
10,752 KB
testcase_19 AC 31 ms
10,880 KB
testcase_20 AC 31 ms
10,880 KB
testcase_21 TLE -
testcase_22 AC 33 ms
10,880 KB
testcase_23 AC 32 ms
10,752 KB
testcase_24 AC 39 ms
10,752 KB
testcase_25 AC 33 ms
10,880 KB
testcase_26 AC 34 ms
10,880 KB
testcase_27 AC 32 ms
10,880 KB
testcase_28 AC 33 ms
10,880 KB
testcase_29 AC 33 ms
10,752 KB
testcase_30 AC 1,626 ms
11,008 KB
testcase_31 AC 32 ms
10,752 KB
testcase_32 TLE -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#yuki-1352
from math import gcd
A, B, C = sorted(map(int, input().split()))
b = A//gcd(A, B)
c = A//gcd(A, C)
if gcd(A, gcd(B, C)) > 1:
    print('INF')
    exit()

#mod Aで頑張る
mex = [float('inf')]*A
mex[0] = 0
for i in range(b):
    for j in range(c):
        R = i*B+j*C
        r = R%A
        mex[r] = min(R, mex[r])
ans = [m//A for m in mex]
print(sum(ans))
0