結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
52,960 KB
testcase_01 AC 113 ms
54,000 KB
testcase_02 AC 99 ms
52,952 KB
testcase_03 AC 113 ms
54,016 KB
testcase_04 AC 112 ms
53,964 KB
testcase_05 AC 114 ms
53,828 KB
testcase_06 AC 108 ms
53,536 KB
testcase_07 AC 116 ms
54,184 KB
testcase_08 AC 123 ms
54,012 KB
testcase_09 AC 129 ms
54,136 KB
testcase_10 AC 111 ms
53,228 KB
testcase_11 AC 116 ms
54,080 KB
testcase_12 AC 111 ms
53,956 KB
testcase_13 AC 119 ms
54,128 KB
testcase_14 AC 123 ms
54,056 KB
testcase_15 AC 121 ms
53,836 KB
testcase_16 AC 118 ms
54,080 KB
testcase_17 AC 114 ms
54,112 KB
testcase_18 AC 111 ms
54,244 KB
testcase_19 AC 115 ms
54,120 KB
testcase_20 AC 115 ms
53,780 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)(500 * n / (8 + 2 * k));
		System.out.println(value);
	}
}
0