結果
| 問題 |
No.1517 Party Location
|
| コンテスト | |
| ユーザー |
anonplz
|
| 提出日時 | 2021-05-28 20:30:58 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 313 bytes |
| コンパイル時間 | 1,706 ms |
| コンパイル使用メモリ | 165,380 KB |
| 実行使用メモリ | 5,248 KB |
| 最終ジャッジ日時 | 2024-11-07 08:07:57 |
| 合計ジャッジ時間 | 2,107 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 9 WA * 4 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
int main(){
int d,a,b;
long long ans = 1000000000000;
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;
}
anonplz