結果

問題 No.176 2種類の切手
ユーザー ckawatakckawatak
提出日時 2017-09-23 19:10:43
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 176 bytes
コンパイル時間 175 ms
コンパイル使用メモリ 82,728 KB
実行使用メモリ 60,732 KB
最終ジャッジ日時 2024-11-14 04:21:11
合計ジャッジ時間 11,465 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,856 KB
testcase_01 AC 38 ms
52,204 KB
testcase_02 AC 39 ms
52,204 KB
testcase_03 TLE -
testcase_04 AC 38 ms
52,624 KB
testcase_05 AC 37 ms
53,380 KB
testcase_06 AC 40 ms
57,400 KB
testcase_07 AC 546 ms
58,324 KB
testcase_08 AC 377 ms
58,916 KB
testcase_09 TLE -
testcase_10 AC 642 ms
57,356 KB
testcase_11 AC 954 ms
58,264 KB
testcase_12 AC 96 ms
58,176 KB
testcase_13 TLE -
testcase_14 AC 105 ms
57,472 KB
testcase_15 AC 586 ms
58,080 KB
testcase_16 AC 986 ms
58,348 KB
testcase_17 AC 197 ms
57,988 KB
testcase_18 AC 39 ms
53,184 KB
testcase_19 AC 39 ms
52,152 KB
testcase_20 AC 42 ms
58,124 KB
testcase_21 AC 38 ms
52,040 KB
testcase_22 AC 39 ms
51,944 KB
testcase_23 AC 39 ms
52,796 KB
testcase_24 AC 283 ms
57,916 KB
testcase_25 AC 588 ms
57,656 KB
testcase_26 AC 38 ms
51,812 KB
testcase_27 AC 45 ms
57,932 KB
testcase_28 AC 55 ms
57,896 KB
testcase_29 AC 44 ms
59,284 KB
testcase_30 AC 46 ms
60,732 KB
testcase_31 AC 38 ms
52,512 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

A,B,T = list(map(int, input().split(' ')))

tmin = float('inf')
for y in range(A+1):
    if y*B <= T+B:
        tmin = min(tmin, y*B + int((T-y*B + A-1)/A)*A)
print(int(tmin))
0