結果

問題 No.445 得点
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-11 04:20:02
言語 Java21
(openjdk 21)
結果
AC  
実行時間 122 ms / 2,000 ms
コード長 224 bytes
コンパイル時間 1,911 ms
コンパイル使用メモリ 71,868 KB
実行使用メモリ 58,016 KB
最終ジャッジ日時 2023-09-12 16:25:52
合計ジャッジ時間 5,413 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
55,728 KB
testcase_01 AC 119 ms
56,068 KB
testcase_02 AC 118 ms
58,016 KB
testcase_03 AC 117 ms
56,324 KB
testcase_04 AC 120 ms
56,312 KB
testcase_05 AC 120 ms
55,620 KB
testcase_06 AC 122 ms
55,840 KB
testcase_07 AC 121 ms
55,728 KB
testcase_08 AC 120 ms
55,352 KB
testcase_09 AC 118 ms
55,752 KB
testcase_10 AC 118 ms
55,988 KB
testcase_11 AC 120 ms
55,524 KB
testcase_12 AC 121 ms
56,212 KB
testcase_13 AC 120 ms
56,140 KB
testcase_14 AC 119 ms
55,324 KB
testcase_15 AC 119 ms
55,740 KB
testcase_16 AC 117 ms
55,824 KB
testcase_17 AC 117 ms
55,348 KB
testcase_18 AC 119 ms
56,368 KB
testcase_19 AC 117 ms
55,836 KB
testcase_20 AC 119 ms
55,724 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