結果

問題 No.176 2種類の切手
ユーザー ei1333333ei1333333
提出日時 2015-04-04 15:21:35
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 106 ms / 1,000 ms
コード長 356 bytes
コンパイル時間 1,516 ms
コンパイル使用メモリ 157,692 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-04-16 22:06:47
合計ジャッジ時間 5,846 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 106 ms
5,248 KB
testcase_01 AC 105 ms
5,376 KB
testcase_02 AC 105 ms
5,376 KB
testcase_03 AC 105 ms
5,376 KB
testcase_04 AC 105 ms
5,376 KB
testcase_05 AC 105 ms
5,376 KB
testcase_06 AC 104 ms
5,376 KB
testcase_07 AC 105 ms
5,376 KB
testcase_08 AC 105 ms
5,376 KB
testcase_09 AC 105 ms
5,376 KB
testcase_10 AC 106 ms
5,376 KB
testcase_11 AC 105 ms
5,376 KB
testcase_12 AC 105 ms
5,376 KB
testcase_13 AC 105 ms
5,376 KB
testcase_14 AC 105 ms
5,376 KB
testcase_15 AC 106 ms
5,376 KB
testcase_16 AC 105 ms
5,376 KB
testcase_17 AC 105 ms
5,376 KB
testcase_18 AC 105 ms
5,376 KB
testcase_19 AC 104 ms
5,376 KB
testcase_20 AC 105 ms
5,376 KB
testcase_21 AC 105 ms
5,376 KB
testcase_22 AC 105 ms
5,376 KB
testcase_23 AC 105 ms
5,376 KB
testcase_24 AC 105 ms
5,376 KB
testcase_25 AC 105 ms
5,376 KB
testcase_26 AC 105 ms
5,376 KB
testcase_27 AC 105 ms
5,376 KB
testcase_28 AC 105 ms
5,376 KB
testcase_29 AC 105 ms
5,376 KB
testcase_30 AC 105 ms
5,376 KB
testcase_31 AC 105 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#define rep(i,n) for(int i = 0; i < n; i++)
typedef long long int64;
const int64 INF = 1LL << 55;

int64 A, B, T;
int64 ret = INF;
int64 Need;
int main()
{
  cin >> A >> B >> T;
  Need = T + B;
  rep(i, 10000000) {
    Need -= B;
    ret = min(ret, (Need + A - 1) / A * A + i * B);
  }
  cout << ret << endl;
}
0