結果

問題 No.445 得点
ユーザー fal_rndfal_rnd
提出日時 2016-11-23 00:01:07
言語 Java21
(openjdk 21)
結果
AC  
実行時間 126 ms / 2,000 ms
コード長 209 bytes
コンパイル時間 2,332 ms
コンパイル使用メモリ 70,608 KB
実行使用メモリ 57,912 KB
最終ジャッジ日時 2023-09-12 07:23:20
合計ジャッジ時間 6,166 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
55,468 KB
testcase_01 AC 124 ms
55,616 KB
testcase_02 AC 122 ms
55,968 KB
testcase_03 AC 124 ms
55,688 KB
testcase_04 AC 122 ms
55,708 KB
testcase_05 AC 123 ms
55,528 KB
testcase_06 AC 124 ms
55,720 KB
testcase_07 AC 125 ms
55,688 KB
testcase_08 AC 125 ms
56,000 KB
testcase_09 AC 123 ms
55,528 KB
testcase_10 AC 126 ms
55,480 KB
testcase_11 AC 126 ms
55,668 KB
testcase_12 AC 123 ms
55,440 KB
testcase_13 AC 124 ms
55,468 KB
testcase_14 AC 124 ms
55,468 KB
testcase_15 AC 124 ms
55,636 KB
testcase_16 AC 125 ms
55,520 KB
testcase_17 AC 122 ms
55,472 KB
testcase_18 AC 124 ms
56,532 KB
testcase_19 AC 122 ms
55,928 KB
testcase_20 AC 126 ms
57,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
class B{
	static Scanner s = new Scanner(System.in);
	public static void main(String[] args) {
		int n=s.nextInt(),k=s.nextInt();
		System.out.println(50*n+(int)(250*n/(double)(4+k)));
	}
}
0