結果

問題 No.445 得点
ユーザー not_522
提出日時 2016-11-22 01:16:31
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 293 bytes
コンパイル時間 1,488 ms
コンパイル使用メモリ 165,636 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-27 09:34:36
合計ジャッジ時間 2,014 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 17 WA * 4
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

struct Initializer {
  Initializer() {
    cin.tie(0);
    ios::sync_with_stdio(0);
    cout << fixed << setprecision(15);
  }
} initializer;

int main() {
  int a, b;
  cin >> a >> b;
  cout << 50 * a + int(50 * a / (0.8 + 0.2 * b)) << endl;
}
0