結果

問題 No.445 得点
ユーザー prog470
提出日時 2016-11-19 23:21:40
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 361 bytes
コンパイル時間 692 ms
コンパイル使用メモリ 88,408 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-29 20:16:53
合計ジャッジ時間 1,270 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 21
権限があれば一括ダウンロードができます

ソースコード

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) + 1e-9) << endl;


	return 0;
}
0