結果

問題 No.445 得点
ユーザー forest3
提出日時 2020-04-21 15:29:07
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 215 bytes
コンパイル時間 1,781 ms
コンパイル使用メモリ 165,700 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-08 11:10:23
合計ジャッジ時間 2,554 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 17 WA * 4
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main()
{
	int N, K;
	cin >> N >> K;

	auto f = [N, K]( ) -> int
	{
		return 50 * N + floor(50 * N / (0.8 + 0.2 * K) );
	};

	int ans = f();

	cout << ans << endl;
}
0