結果

問題 No.445 得点
ユーザー fjafjafjafjafjafja
提出日時 2017-09-10 14:59:01
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 264 bytes
コンパイル時間 3,938 ms
コンパイル使用メモリ 73,912 KB
実行使用メモリ 41,540 KB
最終ジャッジ日時 2024-04-25 02:59:24
合計ジャッジ時間 7,000 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
39,964 KB
testcase_01 AC 122 ms
41,008 KB
testcase_02 AC 125 ms
41,148 KB
testcase_03 AC 126 ms
41,180 KB
testcase_04 AC 112 ms
40,052 KB
testcase_05 AC 126 ms
41,036 KB
testcase_06 AC 128 ms
41,344 KB
testcase_07 AC 112 ms
39,916 KB
testcase_08 AC 122 ms
41,268 KB
testcase_09 AC 122 ms
40,816 KB
testcase_10 AC 124 ms
40,972 KB
testcase_11 AC 120 ms
41,272 KB
testcase_12 AC 124 ms
41,192 KB
testcase_13 AC 112 ms
39,824 KB
testcase_14 AC 127 ms
41,144 KB
testcase_15 AC 121 ms
40,772 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 122 ms
41,160 KB
権限があれば一括ダウンロードができます

ソースコード

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