結果

問題 No.445 得点
ユーザー prog470
提出日時 2016-11-19 23:07:48
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 353 bytes
コンパイル時間 630 ms
コンパイル使用メモリ 87,700 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-27 06:23:05
合計ジャッジ時間 1,353 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 17 WA * 4
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <vector>
#include <list>
#include <map>
#include <set>
#include <queue>
#include <stack>
#include <algorithm>
#include <sstream>
#include <iostream>
#include <string>
#include <cstdio>
#include <cmath>

using namespace std;

int main() {

	double A, B;
	cin >> A >> B;
	cout << 50*(int)A + (int)((50.0*A) / (0.8 + 0.2*B)) << endl;

	return 0;
}
0