結果
問題 | No.1517 Party Location |
ユーザー | private-dev-acct |
提出日時 | 2021-09-25 22:07:14 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 1,352 bytes |
コンパイル時間 | 2,296 ms |
コンパイル使用メモリ | 199,812 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-11 11:18:01 |
合計ジャッジ時間 | 2,822 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 1 ms
5,376 KB |
testcase_11 | AC | 1 ms
5,376 KB |
testcase_12 | AC | 2 ms
5,376 KB |
testcase_13 | AC | 1 ms
5,376 KB |
testcase_14 | AC | 2 ms
5,376 KB |
ソースコード
#include "bits/stdc++.h" using namespace std; #define _CRT_SECURE_NO_WARNINGS #define rep(i,s,l) for(ll i=s;i<l;i++) #define rev_rep(i,l,s) for(ll i=l;i>=s;i--) #define all(x) (x).begin(), (x).end() #define uniq(v) v.erase( unique(v.begin(), v.end()), v.end() ); using ll = long long; using ld = long double; using P = pair<ll, ll>; using VP = vector<P>; using VI = vector<int>; using VLL = vector<ll>; using VS = vector<string>; using VC = vector<char>; const int INF = 2147483647; const ll LINF = 1152921504606846976; const ll MOD = 1e9 + 7; const ld EPS = 1e-9; template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; } template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; } ll gcd(ll p, ll q) { while (q) { ll t = p % q; p = q; q = t; } return p; } ll lcm(ll a, ll b) { return a * b / gcd(a, b); } inline ll mod(ll x, ll y) { if (x >= y) { return x % y; } else if (x < 0) { return (x % y + y) % y; } else { return x; } } signed main() { const streamsize PRECISION_SIZE = 15; ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0); std::cout << std::fixed << std::setprecision(PRECISION_SIZE); int d; int a, b; cin >> d; cin >> a >> b; ll minv{ INF }; rep(x, 0, d + 1) { chmin(minv, x * a + (d - x) * b); } cout << minv << "\n"; return EXIT_SUCCESS; }