結果

問題 No.445 得点
ユーザー fjafjafja
提出日時 2017-09-10 14:59:01
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 264 bytes
コンパイル時間 3,527 ms
コンパイル使用メモリ 74,448 KB
実行使用メモリ 41,508 KB
最終ジャッジ日時 2024-11-07 12:37:38
合計ジャッジ時間 7,010 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 17 WA * 4
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.util.Scanner;

public class N445 {

	public static void main(String[] args)
	{
		Scanner sc=new Scanner(System.in);
		int A=sc.nextInt(),B=sc.nextInt();
		int f=50*A+(int)Math.floor(50*A/(0.8+0.2*B));
		System.out.println(f);
	}

}
0