結果
問題 | No.1101 鼻水 |
ユーザー | yuya1234 |
提出日時 | 2020-07-04 08:47:24 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 488 bytes |
コンパイル時間 | 1,518 ms |
コンパイル使用メモリ | 165,516 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-09-17 15:27:29 |
合計ジャッジ時間 | 4,909 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | -- | - |
ソースコード
#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; }