結果

問題 No.445 得点
ユーザー nao109
提出日時 2022-01-28 23:34:35
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 161 bytes
コンパイル時間 1,546 ms
コンパイル使用メモリ 158,692 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-12-30 12:11:01
合計ジャッジ時間 2,531 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 17 WA * 4
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
int main(){
    double a,b; cin >> a >> b;
    double ans=50*a+floor((50*a)/(0.8+0.2*b));
    cout << ans << endl;
}
0