結果

問題 No.176 2種類の切手
ユーザー ckawatakckawatak
提出日時 2017-09-23 19:09:58
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 176 bytes
コンパイル時間 103 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 24,392 KB
最終ジャッジ日時 2024-11-14 04:16:36
合計ジャッジ時間 32,440 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
21,248 KB
testcase_01 AC 30 ms
17,448 KB
testcase_02 AC 31 ms
17,316 KB
testcase_03 TLE -
testcase_04 AC 28 ms
17,440 KB
testcase_05 AC 29 ms
21,248 KB
testcase_06 AC 28 ms
17,576 KB
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 AC 30 ms
17,316 KB
testcase_19 AC 29 ms
21,248 KB
testcase_20 AC 29 ms
17,440 KB
testcase_21 AC 29 ms
10,624 KB
testcase_22 AC 29 ms
10,752 KB
testcase_23 AC 29 ms
10,624 KB
testcase_24 TLE -
testcase_25 TLE -
testcase_26 AC 29 ms
10,624 KB
testcase_27 AC 653 ms
10,624 KB
testcase_28 TLE -
testcase_29 AC 53 ms
10,624 KB
testcase_30 AC 204 ms
10,624 KB
testcase_31 AC 29 ms
20,992 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