結果

問題 No.445 得点
ユーザー oooooba
提出日時 2021-02-23 10:32:51
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 425 bytes
コンパイル時間 1,788 ms
コンパイル使用メモリ 108,436 KB
最終ジャッジ日時 2025-01-19 04:11:45
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 17 WA * 4
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <array>
#include <cmath>
#include <cstdio>
#include <deque>
#include <iomanip>
#include <iostream>
#include <numeric>
#include <optional>
#include <queue>
#include <sstream>
#include <unordered_map>
#include <unordered_set>
#include <vector>

using namespace std;

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