結果

問題 No.445 得点
ユーザー femto
提出日時 2016-11-18 22:21:27
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 212 bytes
コンパイル時間 1,385 ms
コンパイル使用メモリ 165,524 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-11-26 10:26:50
合計ジャッジ時間 2,032 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 17 WA * 4
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;

int main() {
	cin.tie(0);
	ios::sync_with_stdio(false);

	int A, B;
	cin >> A >> B;

	cout << 50 * A + int(50 * A / (0.8 + 0.2 * B)) << endl;
}
0