結果

問題 No.445 得点
ユーザー shinwisteriashinwisteria
提出日時 2018-03-14 14:26:19
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 305 bytes
コンパイル時間 3,041 ms
コンパイル使用メモリ 74,268 KB
実行使用メモリ 41,588 KB
最終ジャッジ日時 2024-11-27 12:38:16
合計ジャッジ時間 6,453 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
40,348 KB
testcase_01 AC 126 ms
41,408 KB
testcase_02 AC 123 ms
40,668 KB
testcase_03 AC 128 ms
40,528 KB
testcase_04 AC 114 ms
40,496 KB
testcase_05 AC 131 ms
40,988 KB
testcase_06 AC 136 ms
41,416 KB
testcase_07 AC 116 ms
40,984 KB
testcase_08 AC 108 ms
40,340 KB
testcase_09 AC 134 ms
41,588 KB
testcase_10 AC 114 ms
40,408 KB
testcase_11 AC 126 ms
41,016 KB
testcase_12 AC 125 ms
41,356 KB
testcase_13 AC 125 ms
41,568 KB
testcase_14 AC 127 ms
41,236 KB
testcase_15 AC 125 ms
40,888 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 114 ms
40,220 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