結果

問題 No.445 得点
ユーザー yansi819
提出日時 2024-03-31 13:58:58
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 346 bytes
コンパイル時間 4,274 ms
コンパイル使用メモリ 250,212 KB
最終ジャッジ日時 2025-02-20 16:47:37
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 21
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
using ll = long long;
using ld = long double;

int a, b;

int main() {
  cin >> a >> b;
  //cout << fixed << setprecision(15) << (50.0 * a) / (0.8 + 0.2 * b) << endl;
  cout << 50 * a + floor((50.0 * a) / (0.8 + 0.2 * b) + 1e-10) << endl;
  return 0;
}
0