結果

問題 No.604 誕生日のお小遣い
ユーザー 👑 obakyanobakyan
提出日時 2019-04-30 12:24:07
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 601 bytes
コンパイル時間 645 ms
コンパイル使用メモリ 71,480 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-09 10:08:09
合計ジャッジ時間 1,604 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 1 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 1 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 2 ms
6,940 KB
testcase_16 AC 1 ms
6,944 KB
testcase_17 AC 2 ms
6,944 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <cstdlib>
#include <cstddef>
#include <vector>
#include <algorithm>
#include <cmath>
#include <string>
#include <iostream>
#include <iomanip>
#define L64 long long
#define MOD (1000000007LL)

L64 check(L64 age, L64 a, L64 b)
{
  L64 z = age / a;
  return z * b + age - z;
}

int main(void)
{
  L64 a, b, c;
  std::cin >> a >> b >> c;
  L64 min, max;
  min = 0; max = c;
  while(1LL < max - min){
    L64 mid = (min + max) / 2LL;
    L64 score = check(mid, a, b);
    if(score < c){
      min = mid;
    } else {
      max = mid;
    }
  }
  std::cout << max << std::endl;
}
0