結果
問題 |
No.176 2種類の切手
|
ユーザー |
|
提出日時 | 2015-08-13 23:23:21 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 616 bytes |
コンパイル時間 | 1,326 ms |
コンパイル使用メモリ | 159,704 KB |
実行使用メモリ | 13,640 KB |
最終ジャッジ日時 | 2024-10-08 03:30:42 |
合計ジャッジ時間 | 4,352 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | -- * 3 |
other | AC * 1 TLE * 1 -- * 27 |
ソースコード
#include <bits/stdc++.h> #define rep(i, a) for (int i = 0; i < (a); i++) #define rep2(i, a, b) for (int i = (a); i < (b); i++) #define repr(i, a) for (int i = (a) - 1; i >= 0; i--) #define repr2(i, a, b) for (int i = (b) - 1; i >= (a); i--) using namespace std; typedef long long ll; const ll inf = 1e9; const ll mod = 1e9 + 7; int main() { ll A, B, T; cin >> A >> B >> T; ll ans = inf; for (ll x = 0; x <= B && x * A <= T + A; x++) { ll y = (T - A * x + B - 1) / B; if (A * x + B * y >= T) { ans = min(ans, A * x + B * y); } } cout << ans << endl; }