結果

問題 No.445 得点
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-11 04:20:02
言語 Java21
(openjdk 21)
結果
AC  
実行時間 117 ms / 2,000 ms
コード長 224 bytes
コンパイル時間 1,680 ms
コンパイル使用メモリ 73,960 KB
実行使用メモリ 41,524 KB
最終ジャッジ日時 2024-06-30 04:22:11
合計ジャッジ時間 4,587 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 94 ms
39,952 KB
testcase_01 AC 103 ms
40,744 KB
testcase_02 AC 103 ms
40,884 KB
testcase_03 AC 103 ms
41,252 KB
testcase_04 AC 105 ms
41,028 KB
testcase_05 AC 98 ms
40,088 KB
testcase_06 AC 98 ms
40,096 KB
testcase_07 AC 104 ms
40,920 KB
testcase_08 AC 97 ms
40,236 KB
testcase_09 AC 105 ms
40,820 KB
testcase_10 AC 95 ms
39,716 KB
testcase_11 AC 117 ms
41,524 KB
testcase_12 AC 109 ms
41,156 KB
testcase_13 AC 107 ms
40,364 KB
testcase_14 AC 114 ms
41,472 KB
testcase_15 AC 105 ms
40,888 KB
testcase_16 AC 106 ms
40,776 KB
testcase_17 AC 108 ms
40,868 KB
testcase_18 AC 104 ms
40,772 KB
testcase_19 AC 98 ms
40,244 KB
testcase_20 AC 103 ms
40,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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