結果

問題 No.1139 Slime Race
ユーザー Udit GuptaUdit Gupta
提出日時 2020-07-31 21:49:36
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 480 bytes
コンパイル時間 3,566 ms
コンパイル使用メモリ 74,136 KB
実行使用メモリ 69,140 KB
最終ジャッジ日時 2024-07-06 17:38:30
合計ジャッジ時間 15,783 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
54,144 KB
testcase_01 AC 122 ms
54,184 KB
testcase_02 AC 132 ms
54,188 KB
testcase_03 AC 138 ms
54,388 KB
testcase_04 AC 118 ms
54,264 KB
testcase_05 AC 130 ms
54,224 KB
testcase_06 AC 210 ms
57,748 KB
testcase_07 AC 110 ms
52,872 KB
testcase_08 AC 108 ms
52,732 KB
testcase_09 AC 112 ms
52,992 KB
testcase_10 AC 655 ms
63,452 KB
testcase_11 AC 675 ms
59,596 KB
testcase_12 AC 741 ms
61,448 KB
testcase_13 AC 124 ms
53,908 KB
testcase_14 AC 757 ms
63,120 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 814 ms
69,140 KB
testcase_18 AC 691 ms
59,548 KB
testcase_19 AC 576 ms
59,248 KB
testcase_20 AC 577 ms
59,232 KB
testcase_21 AC 698 ms
59,628 KB
testcase_22 AC 648 ms
62,452 KB
testcase_23 AC 894 ms
65,740 KB
testcase_24 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        final Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int d = sc.nextInt();
        for (int i=0; i<n; i++) {
            int temp = sc.nextInt();
        }
        int summ = 0;
        for (int i=0; i<n; i++) {
            int temp = sc.nextInt();
            summ += temp;
        }

        System.out.println((d+summ-1)/summ);
        sc.close();
    }
}
0