結果
問題 | No.1862 Copy and Paste |
ユーザー | fumofumofuni |
提出日時 | 2022-03-04 21:58:24 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 555 bytes |
コンパイル時間 | 649 ms |
コンパイル使用メモリ | 71,424 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-18 20:25:16 |
合計ジャッジ時間 | 21,882 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | AC | 1,505 ms
5,376 KB |
testcase_25 | AC | 2 ms
5,376 KB |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
ソースコード
#include <iostream> #include <algorithm> using namespace std; using ll=long long; ll N, C, V; int main() { cin >> C >> V >> N; if(N==1)cout << 0 << endl,exit(0); ll ret = 1 << 30; for (ll i = 1; i <= 30; i++) { bool flag = false; for (ll j = 1; !flag; j++) { for (ll k = i; k >= 1; k--) { long long mul = 1; for (ll l = 0; l < k; l++) mul *= j; for (ll l = k; l < i; l++) mul *= j + 1; if (mul >= N) { ret = min(ret, (i * j - k) * V + C * i); flag = true; break; } } } } cout << ret << endl; return 0; }