結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
59,728 KB
testcase_01 AC 667 ms
57,648 KB
testcase_02 AC 41 ms
57,984 KB
testcase_03 AC 36 ms
52,500 KB
testcase_04 AC 37 ms
52,644 KB
testcase_05 AC 36 ms
51,996 KB
testcase_06 AC 36 ms
52,944 KB
testcase_07 AC 35 ms
52,304 KB
testcase_08 AC 36 ms
53,220 KB
testcase_09 AC 36 ms
52,908 KB
testcase_10 AC 35 ms
52,304 KB
testcase_11 AC 37 ms
52,364 KB
testcase_12 AC 36 ms
51,748 KB
testcase_13 AC 35 ms
52,796 KB
testcase_14 AC 35 ms
52,668 KB
testcase_15 AC 35 ms
53,000 KB
testcase_16 AC 36 ms
53,604 KB
testcase_17 AC 35 ms
52,340 KB
testcase_18 AC 36 ms
52,792 KB
testcase_19 AC 35 ms
52,428 KB
testcase_20 AC 35 ms
52,620 KB
testcase_21 AC 662 ms
58,980 KB
testcase_22 TLE -
testcase_23 TLE -
testcase_24 AC 36 ms
52,444 KB
testcase_25 AC 36 ms
52,880 KB
testcase_26 AC 735 ms
57,524 KB
testcase_27 AC 37 ms
53,156 KB
testcase_28 AC 36 ms
53,372 KB
testcase_29 AC 39 ms
58,052 KB
testcase_30 AC 39 ms
58,932 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