結果
問題 |
No.1517 Party Location
|
ユーザー |
![]() |
提出日時 | 2021-05-28 20:28:56 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 302 bytes |
コンパイル時間 | 1,760 ms |
コンパイル使用メモリ | 165,644 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-07 08:06:49 |
合計ジャッジ時間 | 2,202 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 9 WA * 4 |
ソースコード
#include <bits/stdc++.h> using namespace std; int main(){ int d,a,b; int ans = 10000000; int printans = 0; cin >> d >> a >> b; for(int i = 0; i <= d; ++i){ if(i*a + (d-i)*b < ans){ printans = i; } } cout << printans*a + (d-printans)*b << endl; }