結果

問題 No.1139 Slime Race
ユーザー ApassApass
提出日時 2020-07-31 22:38:21
言語 Java21
(openjdk 21)
結果
AC  
実行時間 280 ms / 2,000 ms
コード長 770 bytes
コンパイル時間 4,269 ms
コンパイル使用メモリ 74,132 KB
実行使用メモリ 48,304 KB
最終ジャッジ日時 2024-07-02 08:23:46
合計ジャッジ時間 8,115 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
37,264 KB
testcase_01 AC 50 ms
36,644 KB
testcase_02 AC 50 ms
36,904 KB
testcase_03 AC 51 ms
37,052 KB
testcase_04 AC 49 ms
37,184 KB
testcase_05 AC 50 ms
36,764 KB
testcase_06 AC 93 ms
38,960 KB
testcase_07 AC 49 ms
37,184 KB
testcase_08 AC 50 ms
36,964 KB
testcase_09 AC 49 ms
37,136 KB
testcase_10 AC 242 ms
45,396 KB
testcase_11 AC 233 ms
45,088 KB
testcase_12 AC 280 ms
47,780 KB
testcase_13 AC 50 ms
36,640 KB
testcase_14 AC 242 ms
45,844 KB
testcase_15 AC 244 ms
46,684 KB
testcase_16 AC 257 ms
46,456 KB
testcase_17 AC 254 ms
45,968 KB
testcase_18 AC 232 ms
45,468 KB
testcase_19 AC 205 ms
44,688 KB
testcase_20 AC 197 ms
43,516 KB
testcase_21 AC 225 ms
45,336 KB
testcase_22 AC 238 ms
45,432 KB
testcase_23 AC 280 ms
48,304 KB
testcase_24 AC 51 ms
37,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

public class SlimeRace {
    private static final BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    private static StringTokenizer st;

    private static int readInt() throws IOException {
        while (st == null || !st.hasMoreTokens()) st = new StringTokenizer(br.readLine());
        return Integer.parseInt(st.nextToken());
    }

    public static void main(String[] args) throws IOException {
        int N = readInt();
        int D = readInt();
        for (int i = 0; i < N; i++) {
            readInt();
        }
        long speedSum = 0;
        for (int i = 0; i < N; i++) {
            speedSum += readInt();
        }
        System.out.println((D + speedSum - 1) / speedSum);
    }
}
0