結果

問題 No.445 得点
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-11 04:10:33
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 373 bytes
コンパイル時間 5,303 ms
コンパイル使用メモリ 83,816 KB
実行使用メモリ 56,280 KB
最終ジャッジ日時 2024-11-07 08:34:40
合計ジャッジ時間 6,806 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 145 ms
41,612 KB
testcase_01 AC 144 ms
41,884 KB
testcase_02 AC 144 ms
41,296 KB
testcase_03 AC 140 ms
41,308 KB
testcase_04 AC 145 ms
41,296 KB
testcase_05 AC 148 ms
41,540 KB
testcase_06 AC 144 ms
41,668 KB
testcase_07 AC 143 ms
41,208 KB
testcase_08 AC 127 ms
41,692 KB
testcase_09 AC 141 ms
42,016 KB
testcase_10 AC 146 ms
41,696 KB
testcase_11 AC 144 ms
41,232 KB
testcase_12 AC 144 ms
41,664 KB
testcase_13 AC 142 ms
41,492 KB
testcase_14 AC 142 ms
41,660 KB
testcase_15 AC 145 ms
41,748 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 143 ms
41,516 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		double n = sc.nextDouble();
		double k = sc.nextDouble();
		double score = 50*n;
		double a = 0.8;
		double b = 0.2;
		double sub_score = (score)/(a+b*k);
		int total_score = (int)score + (int)sub_score;
		System.out.println(total_score);
	}
}
0