結果

問題 No.176 2種類の切手
ユーザー ckawatakckawatak
提出日時 2017-09-23 17:16:28
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 192 bytes
コンパイル時間 221 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 59,692 KB
最終ジャッジ日時 2024-04-26 15:33:32
合計ジャッジ時間 8,847 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
57,728 KB
testcase_01 AC 672 ms
57,344 KB
testcase_02 AC 41 ms
58,240 KB
testcase_03 AC 39 ms
51,712 KB
testcase_04 AC 35 ms
51,584 KB
testcase_05 AC 37 ms
51,712 KB
testcase_06 AC 37 ms
52,096 KB
testcase_07 AC 36 ms
52,224 KB
testcase_08 AC 37 ms
51,584 KB
testcase_09 AC 38 ms
52,352 KB
testcase_10 AC 36 ms
52,224 KB
testcase_11 AC 39 ms
52,096 KB
testcase_12 AC 40 ms
52,352 KB
testcase_13 AC 39 ms
51,712 KB
testcase_14 AC 40 ms
52,352 KB
testcase_15 AC 40 ms
51,584 KB
testcase_16 AC 40 ms
52,352 KB
testcase_17 AC 39 ms
51,584 KB
testcase_18 AC 40 ms
52,096 KB
testcase_19 AC 38 ms
51,712 KB
testcase_20 AC 40 ms
51,968 KB
testcase_21 AC 668 ms
57,216 KB
testcase_22 TLE -
testcase_23 TLE -
testcase_24 AC 36 ms
53,288 KB
testcase_25 AC 37 ms
51,832 KB
testcase_26 AC 740 ms
58,688 KB
testcase_27 AC 37 ms
52,444 KB
testcase_28 AC 37 ms
52,364 KB
testcase_29 AC 41 ms
59,692 KB
testcase_30 AC 40 ms
58,160 KB
testcase_31 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

tmin = (T + A-1)//A * A
for i in range(0, T+1, A):
    if T < tmin:
        t = i + (T-i + B-1)//B * B
        tmin = min(tmin, t)
print(int(tmin))
0