結果

問題 No.1101 鼻水
ユーザー SSRSSSRS
提出日時 2020-07-03 22:46:26
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 199 bytes
コンパイル時間 1,541 ms
コンパイル使用メモリ 165,588 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-09-17 04:27:04
合計ジャッジ時間 3,360 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int main(){
  long long V, T, P;
  cin >> V >> T >> P;
  assert(V % (T - 1) != 0);
  V *= P + 1;  
  cout << V / (T - 1) * T + V % (T - 1) + 1 << endl;
}
0