結果

問題 No.1139 Slime Race
ユーザー tentententen
提出日時 2020-08-17 21:38:21
言語 Java21
(openjdk 21)
結果
AC  
実行時間 759 ms / 2,000 ms
コード長 332 bytes
コンパイル時間 2,414 ms
コンパイル使用メモリ 76,656 KB
実行使用メモリ 54,756 KB
最終ジャッジ日時 2024-07-02 08:31:43
合計ジャッジ時間 14,006 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
41,124 KB
testcase_01 AC 120 ms
40,096 KB
testcase_02 AC 137 ms
41,144 KB
testcase_03 AC 142 ms
41,680 KB
testcase_04 AC 136 ms
41,296 KB
testcase_05 AC 139 ms
41,256 KB
testcase_06 AC 226 ms
43,516 KB
testcase_07 AC 137 ms
41,388 KB
testcase_08 AC 132 ms
41,000 KB
testcase_09 AC 134 ms
41,380 KB
testcase_10 AC 724 ms
53,708 KB
testcase_11 AC 716 ms
53,744 KB
testcase_12 AC 701 ms
54,756 KB
testcase_13 AC 137 ms
41,408 KB
testcase_14 AC 675 ms
53,516 KB
testcase_15 AC 681 ms
51,796 KB
testcase_16 AC 702 ms
52,064 KB
testcase_17 AC 759 ms
53,092 KB
testcase_18 AC 686 ms
54,088 KB
testcase_19 AC 571 ms
51,756 KB
testcase_20 AC 548 ms
50,896 KB
testcase_21 AC 661 ms
53,884 KB
testcase_22 AC 667 ms
53,148 KB
testcase_23 AC 730 ms
53,092 KB
testcase_24 AC 133 ms
41,100 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int d = sc.nextInt();
		sc.nextLine();
		sc.nextLine();
		long sum = 0;
		for (int i = 0; i < n; i++) {
		    sum += sc.nextInt();
		}
		System.out.println((d + sum - 1) / sum);
	}
}
0