結果

問題 No.176 2種類の切手
ユーザー ayaoniayaoni
提出日時 2020-11-29 19:49:30
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 188 bytes
コンパイル時間 225 ms
コンパイル使用メモリ 82,348 KB
実行使用メモリ 58,400 KB
最終ジャッジ日時 2024-09-13 02:05:11
合計ジャッジ時間 2,537 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,672 KB
testcase_01 AC 37 ms
52,248 KB
testcase_02 AC 38 ms
52,400 KB
testcase_03 WA -
testcase_04 AC 38 ms
52,968 KB
testcase_05 WA -
testcase_06 AC 37 ms
52,200 KB
testcase_07 AC 38 ms
52,656 KB
testcase_08 AC 38 ms
52,484 KB
testcase_09 AC 39 ms
52,000 KB
testcase_10 AC 37 ms
53,076 KB
testcase_11 AC 37 ms
53,336 KB
testcase_12 WA -
testcase_13 AC 37 ms
52,616 KB
testcase_14 AC 38 ms
52,280 KB
testcase_15 WA -
testcase_16 AC 37 ms
52,032 KB
testcase_17 AC 37 ms
52,068 KB
testcase_18 AC 37 ms
54,112 KB
testcase_19 WA -
testcase_20 AC 38 ms
52,832 KB
testcase_21 AC 38 ms
52,192 KB
testcase_22 AC 37 ms
52,540 KB
testcase_23 AC 37 ms
53,324 KB
testcase_24 AC 38 ms
51,824 KB
testcase_25 AC 38 ms
52,252 KB
testcase_26 AC 38 ms
53,372 KB
testcase_27 AC 38 ms
52,884 KB
testcase_28 AC 39 ms
52,688 KB
testcase_29 AC 42 ms
58,400 KB
testcase_30 AC 42 ms
58,340 KB
testcase_31 AC 38 ms
52,452 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
def MI(): return map(int,sys.stdin.readline().rstrip().split())


A,B,T = MI()
ans = 10**18
for i in range(min(T//B,A)+2):
    ans = min(ans,A*((T-B*i+A-1)//A)+B*i)

print(ans)
0