結果

問題 No.445 得点
ユーザー shinwisteriashinwisteria
提出日時 2018-03-14 14:26:19
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 305 bytes
コンパイル時間 3,449 ms
コンパイル使用メモリ 71,520 KB
実行使用メモリ 56,280 KB
最終ジャッジ日時 2023-08-18 08:47:36
合計ジャッジ時間 9,176 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 145 ms
55,964 KB
testcase_01 AC 144 ms
55,684 KB
testcase_02 AC 144 ms
55,856 KB
testcase_03 AC 142 ms
55,852 KB
testcase_04 AC 142 ms
56,044 KB
testcase_05 AC 143 ms
56,056 KB
testcase_06 AC 144 ms
55,756 KB
testcase_07 AC 143 ms
55,968 KB
testcase_08 AC 145 ms
56,232 KB
testcase_09 AC 142 ms
55,696 KB
testcase_10 AC 144 ms
55,992 KB
testcase_11 AC 143 ms
56,024 KB
testcase_12 AC 145 ms
55,612 KB
testcase_13 AC 142 ms
55,912 KB
testcase_14 AC 140 ms
55,856 KB
testcase_15 AC 141 ms
56,116 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 140 ms
55,604 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package m.shin;
import java.util.Scanner;
public class Con445 {

	public static void main(String[] args) {
		Scanner s = new Scanner(System.in);
		int a = s.nextInt();
		double b = s.nextDouble();
		s.close();

		double c = (50 * (double)a) / (0.8 + 0.2 * b);
		System.out.println(50 * a + (int)c);
	}

}
0