結果

問題 No.445 得点
ユーザー htensaihtensai
提出日時 2019-11-19 11:16:10
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 311 bytes
コンパイル時間 2,243 ms
コンパイル使用メモリ 73,996 KB
実行使用メモリ 54,284 KB
最終ジャッジ日時 2024-10-03 06:23:40
合計ジャッジ時間 4,992 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
54,020 KB
testcase_01 AC 111 ms
53,828 KB
testcase_02 AC 113 ms
53,948 KB
testcase_03 AC 111 ms
54,012 KB
testcase_04 AC 112 ms
53,688 KB
testcase_05 AC 101 ms
52,720 KB
testcase_06 AC 108 ms
54,040 KB
testcase_07 AC 99 ms
52,964 KB
testcase_08 AC 114 ms
54,132 KB
testcase_09 AC 113 ms
54,116 KB
testcase_10 AC 120 ms
53,844 KB
testcase_11 AC 118 ms
54,136 KB
testcase_12 AC 121 ms
54,080 KB
testcase_13 AC 122 ms
53,764 KB
testcase_14 AC 106 ms
52,732 KB
testcase_15 AC 116 ms
54,128 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 113 ms
54,200 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