結果

問題 No.1101 鼻水
ユーザー yuya1234yuya1234
提出日時 2020-07-04 08:47:24
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 488 bytes
コンパイル時間 1,520 ms
コンパイル使用メモリ 166,420 KB
実行使用メモリ 7,652 KB
最終ジャッジ日時 2023-10-17 18:10:08
合計ジャッジ時間 5,277 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;
typedef long long ll;

#define FOR(i, a, b) for (ll i = a; i <= (ll)(b); i++)

int main()
{
  cin.tie(0);
  ios_base::sync_with_stdio(false);

  ll v, t, p;
  cin >> v >> t >> p;

  ll a = 0, i = 0, va = 0, vmax;
  vmax = (p + 1) * v;

  for (;;)
  {
    a += vmax/(t - 1)*t;
    i += vmax/(t - 1)*(t+1);

    if (a > vmax)
    {
      va = a - vmax;
      i -= va;
      a = vmax;
      break;
    }
  }

  cout << i << endl;

  return 0;
}
0