結果

問題 No.176 2種類の切手
ユーザー e-mone-mon
提出日時 2015-04-02 23:46:26
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 332 bytes
コンパイル時間 471 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 66,492 KB
最終ジャッジ日時 2024-10-08 01:38:22
合計ジャッジ時間 4,270 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 38 ms
51,996 KB
testcase_02 AC 33 ms
53,988 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 38 ms
52,416 KB
testcase_06 AC 38 ms
53,076 KB
testcase_07 WA -
testcase_08 AC 34 ms
52,984 KB
testcase_09 AC 33 ms
52,748 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 33 ms
53,456 KB
testcase_20 AC 33 ms
51,956 KB
testcase_21 AC 33 ms
52,480 KB
testcase_22 TLE -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python
# -*- coding: utf-8 -*-
import math

A,B,T = map(int,input().split())
A,B = max(A,B),min(A,B)

total = 0
for i in range(math.ceil(T/A))[::-1]:
    if T - total == 0:
        break
    if T-total > T-(i*A+B*math.ceil((T-i*A)/B)) >= 0:
        total = i*A+B*math.ceil((T-i*A)/B)
print(total if total > 0 else B)
0