結果
問題 | No.1517 Party Location |
ユーザー | Chaithanya Shyam |
提出日時 | 2021-05-28 20:24:11 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 2,512 bytes |
コンパイル時間 | 2,635 ms |
コンパイル使用メモリ | 178,384 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-11 10:50:20 |
合計ジャッジ時間 | 2,688 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 1 ms
5,248 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 | 2 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | AC | 2 ms
5,376 KB |
testcase_13 | AC | 2 ms
5,376 KB |
testcase_14 | AC | 2 ms
5,376 KB |
ソースコード
#pragma GCC optimize("Ofast") #pragma GCC target("avx,avx2,fma") #include <bits/stdc++.h> //#include <ext/pb_ds/assoc_container.hpp> //required //#include <ext/pb_ds/tree_policy.hpp> //required //using namespace __gnu_pbds; //required using namespace std; //template <typename T> using ordered_set = tree<T, null_type, less<T>, rb_tree_tag, tree_order_statistics_node_update>; // ordered_set <int> s; // s.find_by_order(k); returns the (k+1)th smallest element // s.order_of_key(k); returns the number of elements in s strictly less than k #define pb(x) push_back(x) #define mp(x,y) make_pair(x,y) #define all(x) x.begin(), x.end() #define print(vec,l,r) for(int i = l; i <= r; i++) cout << vec[i] <<" "; cout << endl; #define input(vec,N) for(int i = 0; i < (N); i++) cin >> vec[i]; #define debug(x) cerr << #x << " = " << (x) << endl; #define leftmost_bit(x) (63-__builtin_clzll(x)) #define rightmost_bit(x) __builtin_ctzll(x) // count trailing zeros #define set_bits(x) __builtin_popcountll(x) #define pow2(i) (1LL << (i)) #define is_on(x, i) ((x) & pow2(i)) // state of the ith bit in x #define set_on(x, i) ((x) | pow2(i)) // returns integer x with ith bit on #define set_off(x, i) ((x) & ~pow2(i)) // returns integer x with ith bit off mt19937 rng(chrono::steady_clock::now().time_since_epoch().count()); // auto dist = uniform_int_distribution<int>(l, r); // use int a = dist(rng) to get a random number between [l,r] inclusive typedef long long int ll; typedef long double ld; const int MOD = 1e9+7; // 998244353; const int MX = 2e5+5; const ll INF = 1e18; // not too close to LLONG_MAX const ld PI = acos((ld)-1); const ld EPS = 1e-8; const int dx[4] = {1,0,-1,0}, dy[4] = {0,1,0,-1}; // for every grid problem!! // highly risky #defines #define int ll // disable when you want to make code a bit faster #define endl '\n' // disable when dealing with interactive problems typedef vector<int> vi; typedef pair<int, int> pii; void solve(){ int a, b, d; cin >> d >> a >> b; int ans = 0; if(a < b) ans = d*(a-b) + b*d; else ans = b*d; cout << ans << endl; } clock_t startTime; double getCurrentTime() { return (double)(clock() - startTime) / CLOCKS_PER_SEC; } signed main(){ ios_base::sync_with_stdio(false); cin.tie(NULL); //startTime = clock(); // mt19937_64 rnd(time(NULL)); int T = 1; // cin >> T; while(T--){ solve(); } //cerr << getCurrentTime() << endl; return 0; }