結果

問題 No.176 2種類の切手
ユーザー 👑 rin204rin204
提出日時 2022-07-06 07:05:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 43 ms / 1,000 ms
コード長 310 bytes
コンパイル時間 340 ms
コンパイル使用メモリ 82,004 KB
実行使用メモリ 59,076 KB
最終ジャッジ日時 2024-12-18 01:05:28
合計ジャッジ時間 2,748 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,688 KB
testcase_01 AC 38 ms
52,744 KB
testcase_02 AC 39 ms
52,960 KB
testcase_03 AC 38 ms
53,588 KB
testcase_04 AC 38 ms
53,536 KB
testcase_05 AC 38 ms
52,392 KB
testcase_06 AC 39 ms
52,352 KB
testcase_07 AC 37 ms
52,524 KB
testcase_08 AC 38 ms
53,092 KB
testcase_09 AC 39 ms
53,484 KB
testcase_10 AC 38 ms
53,380 KB
testcase_11 AC 39 ms
53,108 KB
testcase_12 AC 39 ms
52,200 KB
testcase_13 AC 38 ms
52,456 KB
testcase_14 AC 37 ms
51,888 KB
testcase_15 AC 37 ms
52,416 KB
testcase_16 AC 38 ms
53,028 KB
testcase_17 AC 39 ms
53,564 KB
testcase_18 AC 38 ms
52,812 KB
testcase_19 AC 37 ms
52,500 KB
testcase_20 AC 39 ms
52,528 KB
testcase_21 AC 37 ms
53,708 KB
testcase_22 AC 39 ms
53,468 KB
testcase_23 AC 39 ms
52,376 KB
testcase_24 AC 39 ms
52,820 KB
testcase_25 AC 37 ms
52,432 KB
testcase_26 AC 38 ms
52,652 KB
testcase_27 AC 38 ms
52,192 KB
testcase_28 AC 39 ms
53,016 KB
testcase_29 AC 41 ms
59,076 KB
testcase_30 AC 43 ms
58,648 KB
testcase_31 AC 38 ms
52,492 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd

a, b, t = map(int, input().split())
if b ** 3 <= t:
    g = gcd(a, b)
    ans = (t + g - 1) // g * g
else:
    ans = 1 << 40
    i = 0
    while b * i <= t:
        j = (t - b * i + a - 1) // a
        ans = min(ans, b * i + a * j)
        i += 1
    ans = min(ans, b * i)
    
print(ans)
0