結果

問題 No.445 得点
ユーザー yuma_shobon1108
提出日時 2016-12-02 19:05:05
言語 Java
(openjdk 23)
結果
AC  
実行時間 144 ms / 2,000 ms
コード長 264 bytes
コンパイル時間 1,980 ms
コンパイル使用メモリ 73,732 KB
実行使用メモリ 41,596 KB
最終ジャッジ日時 2024-06-29 20:55:11
合計ジャッジ時間 5,867 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 21
権限があれば一括ダウンロードができます

ソースコード

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((int)(50*n+((50*n)/(0.8+(0.2*k)))));
	}
}
0