結果

問題 No.1139 Slime Race
ユーザー ks2mks2m
提出日時 2020-07-31 21:24:45
言語 Java21
(openjdk 21)
結果
AC  
実行時間 259 ms / 2,000 ms
コード長 533 bytes
コンパイル時間 2,184 ms
コンパイル使用メモリ 74,724 KB
実行使用メモリ 63,240 KB
最終ジャッジ日時 2024-07-02 08:14:57
合計ジャッジ時間 6,814 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
50,076 KB
testcase_01 AC 54 ms
50,132 KB
testcase_02 AC 54 ms
50,208 KB
testcase_03 AC 54 ms
50,096 KB
testcase_04 AC 56 ms
50,076 KB
testcase_05 AC 56 ms
49,956 KB
testcase_06 AC 70 ms
50,832 KB
testcase_07 AC 54 ms
50,296 KB
testcase_08 AC 55 ms
49,880 KB
testcase_09 AC 55 ms
49,956 KB
testcase_10 AC 227 ms
58,272 KB
testcase_11 AC 203 ms
58,632 KB
testcase_12 AC 251 ms
61,480 KB
testcase_13 AC 54 ms
49,616 KB
testcase_14 AC 221 ms
58,460 KB
testcase_15 AC 252 ms
61,244 KB
testcase_16 AC 255 ms
61,316 KB
testcase_17 AC 224 ms
58,588 KB
testcase_18 AC 215 ms
58,420 KB
testcase_19 AC 163 ms
54,812 KB
testcase_20 AC 166 ms
55,112 KB
testcase_21 AC 209 ms
58,496 KB
testcase_22 AC 220 ms
58,488 KB
testcase_23 AC 259 ms
63,240 KB
testcase_24 AC 56 ms
49,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;

public class Main {
	public static void main(String[] args) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		String[] sa = br.readLine().split(" ");
		int n = Integer.parseInt(sa[0]);
		int d = Integer.parseInt(sa[1]);
		br.readLine();
		sa = br.readLine().split(" ");
		long sum = 0;
		for (int i = 0; i < n; i++) {
			sum += Integer.parseInt(sa[i]);
		}
		br.close();

		System.out.println((d + sum - 1) / sum);
	}
}
0