結果

問題 No.445 得点
ユーザー yuma_shobon1108yuma_shobon1108
提出日時 2016-12-02 19:01:28
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 262 bytes
コンパイル時間 2,025 ms
コンパイル使用メモリ 74,020 KB
実行使用メモリ 54,228 KB
最終ジャッジ日時 2024-11-27 17:26:38
合計ジャッジ時間 5,636 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 17 WA * 4
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Question445
{
	public static void main(String[] str)
	{
	
		Scanner scan = new Scanner(System.in);
		
		int     n = scan.nextInt();
		double  k = scan.nextDouble();
		

		System.out.println(50*n+(int)((50*n)/(0.8+(0.2*k))));
	}
}
0