結果

問題 No.1139 Slime Race
ユーザー face4face4
提出日時 2020-08-07 08:53:15
言語 Java21
(openjdk 21)
結果
AC  
実行時間 231 ms / 2,000 ms
コード長 581 bytes
コンパイル時間 2,084 ms
コンパイル使用メモリ 74,380 KB
実行使用メモリ 53,712 KB
最終ジャッジ日時 2024-07-02 08:30:24
合計ジャッジ時間 6,694 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
36,640 KB
testcase_01 AC 50 ms
36,780 KB
testcase_02 AC 52 ms
37,056 KB
testcase_03 AC 51 ms
36,644 KB
testcase_04 AC 51 ms
37,016 KB
testcase_05 AC 53 ms
36,844 KB
testcase_06 AC 77 ms
38,092 KB
testcase_07 AC 51 ms
37,152 KB
testcase_08 AC 51 ms
37,008 KB
testcase_09 AC 52 ms
37,044 KB
testcase_10 AC 231 ms
48,056 KB
testcase_11 AC 212 ms
47,956 KB
testcase_12 AC 228 ms
50,116 KB
testcase_13 AC 52 ms
37,088 KB
testcase_14 AC 211 ms
47,596 KB
testcase_15 AC 215 ms
50,536 KB
testcase_16 AC 230 ms
51,168 KB
testcase_17 AC 216 ms
47,164 KB
testcase_18 AC 222 ms
47,356 KB
testcase_19 AC 169 ms
44,568 KB
testcase_20 AC 163 ms
44,792 KB
testcase_21 AC 204 ms
48,288 KB
testcase_22 AC 221 ms
47,236 KB
testcase_23 AC 221 ms
53,712 KB
testcase_24 AC 50 ms
36,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;

public class Main {
    public static void main(String[] args) throws IOException {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        String line[] = br.readLine().split(" ");
        int n = Integer.parseInt(line[0]);
        int d = Integer.parseInt(line[1]);
        br.readLine();
        line = br.readLine().split(" ");
        int sum = 0;
        for(int i = 0; i < n; i++){
            if(sum >= d) break;
            sum += Integer.parseInt(line[i]);
        }
        System.out.println((d+sum-1)/sum);
    }
}
0