結果
問題 |
No.1517 Party Location
|
ユーザー |
|
提出日時 | 2023-12-06 12:01:22 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 151 bytes |
コンパイル時間 | 1,534 ms |
コンパイル使用メモリ | 164,900 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-27 01:13:09 |
合計ジャッジ時間 | 2,268 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 WA * 1 |
other | AC * 2 WA * 11 |
ソースコード
using namespace std; #include<bits/stdc++.h> int main(){ int d; int a,b; cin >> d >> a >> b; int x = d / 2; cout << a*x + b*x << endl; }