結果

問題 No.1139 Slime Race
ユーザー キョウチクキョウチク
提出日時 2022-05-16 18:16:44
言語 Java21
(openjdk 21)
結果
AC  
実行時間 498 ms / 2,000 ms
コード長 612 bytes
コンパイル時間 3,527 ms
コンパイル使用メモリ 78,204 KB
実行使用メモリ 63,528 KB
最終ジャッジ日時 2024-09-14 10:50:50
合計ジャッジ時間 13,284 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
41,088 KB
testcase_01 AC 128 ms
41,248 KB
testcase_02 AC 128 ms
41,336 KB
testcase_03 AC 134 ms
41,440 KB
testcase_04 AC 130 ms
41,304 KB
testcase_05 AC 117 ms
40,052 KB
testcase_06 AC 181 ms
42,196 KB
testcase_07 AC 127 ms
41,160 KB
testcase_08 AC 126 ms
41,132 KB
testcase_09 AC 125 ms
41,436 KB
testcase_10 AC 472 ms
56,068 KB
testcase_11 AC 415 ms
55,668 KB
testcase_12 AC 490 ms
56,768 KB
testcase_13 AC 129 ms
41,292 KB
testcase_14 AC 477 ms
63,528 KB
testcase_15 AC 498 ms
62,424 KB
testcase_16 AC 477 ms
62,704 KB
testcase_17 AC 474 ms
63,504 KB
testcase_18 AC 442 ms
55,604 KB
testcase_19 AC 426 ms
57,208 KB
testcase_20 AC 377 ms
54,324 KB
testcase_21 AC 429 ms
55,584 KB
testcase_22 AC 475 ms
63,432 KB
testcase_23 AC 485 ms
62,920 KB
testcase_24 AC 133 ms
41,332 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class Test10 {
  public static void main(String[] args){
    Scanner sc=new Scanner(System.in);
    String[] line;
    line=sc.nextLine().split(" ");
    int n=Integer.parseInt(line[0]);
    int d=Integer.parseInt(line[1]);
    int[] x=new int[n],v=new int[n];
    line=sc.nextLine().split(" ");
    for(int i=0;i<n;i++) x[i]=Integer.parseInt(line[i]);
    line=sc.nextLine().split(" ");
    for(int i=0;i<n;i++) v[i]=Integer.parseInt(line[i]);
    long v_t=0;
    for(int i=0;i<n;i++) v_t+=v[i];
    long t=d/v_t;
    if(d%v_t>0) t++;
    System.out.println(t);
    sc.close();
  }
}
0