結果

問題 No.176 2種類の切手
ユーザー qibqib
提出日時 2022-12-31 03:53:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 43 ms / 1,000 ms
コード長 190 bytes
コンパイル時間 171 ms
コンパイル使用メモリ 82,156 KB
実行使用メモリ 58,624 KB
最終ジャッジ日時 2024-11-26 02:27:10
合計ジャッジ時間 2,432 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,700 KB
testcase_01 AC 39 ms
53,408 KB
testcase_02 AC 39 ms
52,820 KB
testcase_03 AC 38 ms
52,012 KB
testcase_04 AC 38 ms
53,108 KB
testcase_05 AC 38 ms
52,960 KB
testcase_06 AC 38 ms
52,304 KB
testcase_07 AC 38 ms
52,880 KB
testcase_08 AC 38 ms
51,956 KB
testcase_09 AC 39 ms
52,076 KB
testcase_10 AC 39 ms
52,680 KB
testcase_11 AC 38 ms
52,088 KB
testcase_12 AC 38 ms
52,776 KB
testcase_13 AC 38 ms
53,320 KB
testcase_14 AC 38 ms
52,864 KB
testcase_15 AC 38 ms
51,888 KB
testcase_16 AC 38 ms
51,944 KB
testcase_17 AC 38 ms
51,908 KB
testcase_18 AC 39 ms
52,952 KB
testcase_19 AC 38 ms
52,360 KB
testcase_20 AC 39 ms
52,068 KB
testcase_21 AC 38 ms
52,272 KB
testcase_22 AC 38 ms
52,832 KB
testcase_23 AC 38 ms
52,564 KB
testcase_24 AC 38 ms
52,556 KB
testcase_25 AC 38 ms
52,504 KB
testcase_26 AC 38 ms
52,180 KB
testcase_27 AC 39 ms
51,824 KB
testcase_28 AC 39 ms
52,516 KB
testcase_29 AC 43 ms
58,624 KB
testcase_30 AC 42 ms
58,176 KB
testcase_31 AC 38 ms
53,052 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a, b, t = map(int, input().split())

ans = 1 << 60
for y in range(min((t + b - 1) // b, a - 1) + 1):
  x = (t - b * y + a - 1) // a
  if x >= 0:
    ans = min(ans, a * x + b * y)

print(ans)
0