結果
| 問題 | No.1517 Party Location |
| コンテスト | |
| ユーザー |
shojin
|
| 提出日時 | 2024-05-08 21:01:18 |
| 言語 | C++23 (gcc 13.3.0 + boost 1.89.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 155 bytes |
| 記録 | |
| コンパイル時間 | 5,250 ms |
| コンパイル使用メモリ | 272,608 KB |
| 実行使用メモリ | 6,824 KB |
| 最終ジャッジ日時 | 2024-12-15 04:23:35 |
| 合計ジャッジ時間 | 5,937 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 1 WA * 11 RE * 1 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
int main(){
int d, a, b;
cin >> d >> a >> b;
int x = b * d / (a + b);
cout << x * a + (d - x) * b;
}
shojin