結果

問題 No.176 2種類の切手
ユーザー roarisroaris
提出日時 2019-12-09 14:43:17
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 182 bytes
コンパイル時間 140 ms
コンパイル使用メモリ 81,880 KB
実行使用メモリ 58,184 KB
最終ジャッジ日時 2024-06-22 05:22:35
合計ジャッジ時間 2,307 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,136 KB
testcase_01 AC 38 ms
52,636 KB
testcase_02 AC 37 ms
52,792 KB
testcase_03 AC 38 ms
53,944 KB
testcase_04 AC 37 ms
52,496 KB
testcase_05 AC 36 ms
52,756 KB
testcase_06 AC 36 ms
51,888 KB
testcase_07 AC 36 ms
52,244 KB
testcase_08 AC 37 ms
52,328 KB
testcase_09 AC 38 ms
52,260 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 34 ms
53,824 KB
testcase_13 AC 35 ms
53,496 KB
testcase_14 AC 38 ms
52,616 KB
testcase_15 AC 38 ms
52,860 KB
testcase_16 AC 37 ms
52,892 KB
testcase_17 WA -
testcase_18 AC 36 ms
52,728 KB
testcase_19 AC 36 ms
52,656 KB
testcase_20 AC 37 ms
52,392 KB
testcase_21 AC 35 ms
51,944 KB
testcase_22 AC 34 ms
52,684 KB
testcase_23 AC 35 ms
53,224 KB
testcase_24 AC 37 ms
52,336 KB
testcase_25 WA -
testcase_26 AC 36 ms
52,752 KB
testcase_27 AC 37 ms
52,440 KB
testcase_28 AC 37 ms
52,572 KB
testcase_29 AC 43 ms
58,172 KB
testcase_30 AC 41 ms
58,184 KB
testcase_31 AC 37 ms
52,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

A, B, T = map(int, input().split())
i = 0
ans = 10**18

while True:
    if i>=A or B*i>T:
        break
    
    j = (T-i*B+A-1)//A
    ans = min(ans, A*j+B*i)
    i += 1

print(ans)
0