結果

問題 No.445 得点
ユーザー iroha168
提出日時 2017-01-01 22:47:16
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 233 bytes
コンパイル時間 857 ms
コンパイル使用メモリ 73,096 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-12-16 05:25:57
合計ジャッジ時間 1,756 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 17 WA * 4
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<string>
#include<iostream>
#include<algorithm>
#include<set>
#include<math.h>

using namespace std;

int main() {
	int n, k, r;
	cin >> n >> k;
	r = 50 * n + floor((int)(50*n)/(0.8+0.2*k));
	cout << r << endl;
	return 0;
}

0