結果
問題 | No.555 世界史のレポート |
ユーザー | nanophoto12 |
提出日時 | 2017-08-12 00:20:10 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,171 bytes |
コンパイル時間 | 879 ms |
コンパイル使用メモリ | 91,456 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-12 22:32:14 |
合計ジャッジ時間 | 1,569 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,820 KB |
testcase_02 | AC | 2 ms
6,816 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 2 ms
6,816 KB |
testcase_09 | AC | 2 ms
6,816 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 2 ms
6,816 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
ソースコード
#include <cmath> #include <vector> #include <list> #include <map> #include <set> #include <functional> #include <queue> #include <iostream> #include <string.h> #include <iomanip> #include <algorithm> #include <functional> #include <cstdint> #include <climits> #include <unordered_set> #include <sstream> #include <stack> using namespace std; typedef long long int ll; typedef pair<int,int> pii; int main() { ll n; cin >> n; ll c, v; cin >> c >> v; ll minCost = 1e15; for(int i = 1;i <= 32;i++) { ll count = 1; ll cost = 0; ll crip = 0; for(int j = 0;j < i;j++) { crip = count; cost += c; count += crip; cost += v; if(count >= n) { break; } } if(count < n) { ll aa = (n-count) / crip; if((n - count) % crip > 0) { aa++; } cost += aa * v; } //cout << i << "," << count << "," << cost << endl; minCost = min(minCost, cost); } cout << minCost << endl; return 0; }