結果

問題 No.1139 Slime Race
ユーザー RISE70226821RISE70226821
提出日時 2020-08-03 11:39:22
言語 Java21
(openjdk 21)
結果
AC  
実行時間 925 ms / 2,000 ms
コード長 669 bytes
コンパイル時間 2,137 ms
コンパイル使用メモリ 74,024 KB
実行使用メモリ 71,084 KB
最終ジャッジ日時 2024-07-02 08:29:53
合計ジャッジ時間 15,488 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
54,108 KB
testcase_01 AC 132 ms
53,844 KB
testcase_02 AC 130 ms
53,968 KB
testcase_03 AC 146 ms
53,912 KB
testcase_04 AC 132 ms
53,980 KB
testcase_05 AC 141 ms
54,184 KB
testcase_06 AC 223 ms
57,456 KB
testcase_07 AC 129 ms
53,900 KB
testcase_08 AC 117 ms
52,612 KB
testcase_09 AC 132 ms
53,660 KB
testcase_10 AC 736 ms
63,676 KB
testcase_11 AC 750 ms
59,416 KB
testcase_12 AC 797 ms
63,028 KB
testcase_13 AC 131 ms
54,112 KB
testcase_14 AC 925 ms
62,936 KB
testcase_15 AC 774 ms
61,080 KB
testcase_16 AC 749 ms
64,340 KB
testcase_17 AC 898 ms
71,084 KB
testcase_18 AC 718 ms
59,304 KB
testcase_19 AC 616 ms
59,500 KB
testcase_20 AC 610 ms
59,452 KB
testcase_21 AC 716 ms
59,264 KB
testcase_22 AC 765 ms
62,716 KB
testcase_23 AC 864 ms
63,716 KB
testcase_24 AC 131 ms
54,068 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
	public static void main (String[] args) throws java.lang.Exception
	{
		// your code goes here
		// 入力
		Scanner sc = new Scanner(System.in);
		int N = sc.nextInt();
		int D = sc.nextInt();
		int[] X = new int[N];
		int[] V = new int[N];
		for(int i = 0; i < N; i++){
			X[i] = sc.nextInt();
		}
		long Vsum = 0L;
		for(int i = 0; i < N; i++){
			V[i] = sc.nextInt();
			Vsum += V[i];
		}
		
		// 計算
		long time = 0L;
		if(D % Vsum == 0){
			time = D / Vsum;
		}else{
			time = D / Vsum + 1;
		}
		
		// 出力
		System.out.println(time);
	}

}
0