結果

問題 No.445 得点
ユーザー htensaihtensai
提出日時 2019-11-19 11:16:10
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 311 bytes
コンパイル時間 1,969 ms
コンパイル使用メモリ 73,808 KB
実行使用メモリ 56,008 KB
最終ジャッジ日時 2024-04-14 09:22:36
合計ジャッジ時間 5,967 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
54,216 KB
testcase_01 AC 132 ms
54,160 KB
testcase_02 AC 131 ms
54,168 KB
testcase_03 AC 131 ms
54,236 KB
testcase_04 AC 132 ms
54,144 KB
testcase_05 AC 132 ms
54,040 KB
testcase_06 AC 130 ms
54,184 KB
testcase_07 AC 134 ms
54,016 KB
testcase_08 AC 131 ms
53,900 KB
testcase_09 AC 132 ms
53,856 KB
testcase_10 AC 130 ms
54,032 KB
testcase_11 AC 132 ms
53,984 KB
testcase_12 AC 135 ms
53,972 KB
testcase_13 AC 130 ms
54,092 KB
testcase_14 AC 133 ms
54,128 KB
testcase_15 AC 132 ms
53,772 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 131 ms
54,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    static int[][] prises;
    static int[][] dp;
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int k = sc.nextInt();
		int value = 50 * n + (int)(50 * n / (0.8 + 0.2 * k));
		System.out.println(value);
	}
}
0