結果

問題 No.2407 Bouns 2.0
ユーザー sbriasbria
提出日時 2023-08-11 21:33:33
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 185 bytes
コンパイル時間 827 ms
コンパイル使用メモリ 63,008 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-18 15:31:37
合計ジャッジ時間 1,339 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 18
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>

int main(void)
{
	int W=10,Z=10;
	float B=0.0f;
	std::cin >> W >> Z >> B;
	int b = (int)(B*10.0f);
	int ans = W + Z + (W+Z)*b/10;
	std::cout << ans;
	return 0;
}


0