結果

問題 No.445 得点
ユーザー fjafjafjafjafjafja
提出日時 2017-09-10 14:59:01
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 264 bytes
コンパイル時間 3,527 ms
コンパイル使用メモリ 74,448 KB
実行使用メモリ 41,508 KB
最終ジャッジ日時 2024-11-07 12:37:38
合計ジャッジ時間 7,010 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
41,252 KB
testcase_01 AC 132 ms
40,952 KB
testcase_02 AC 129 ms
41,152 KB
testcase_03 AC 126 ms
41,248 KB
testcase_04 AC 125 ms
40,944 KB
testcase_05 AC 114 ms
39,724 KB
testcase_06 AC 115 ms
40,168 KB
testcase_07 AC 125 ms
41,508 KB
testcase_08 AC 118 ms
40,164 KB
testcase_09 AC 130 ms
40,792 KB
testcase_10 AC 124 ms
41,032 KB
testcase_11 AC 128 ms
41,140 KB
testcase_12 AC 116 ms
39,856 KB
testcase_13 AC 113 ms
40,168 KB
testcase_14 AC 124 ms
41,168 KB
testcase_15 AC 126 ms
41,112 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 128 ms
41,384 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