結果

問題 No.1139 Slime Race
ユーザー roarisroaris
提出日時 2020-08-09 22:00:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 111 ms / 2,000 ms
コード長 172 bytes
コンパイル時間 283 ms
コンパイル使用メモリ 86,448 KB
実行使用メモリ 102,000 KB
最終ジャッジ日時 2023-09-15 03:05:17
合計ジャッジ時間 3,870 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 71 ms
70,852 KB
testcase_01 AC 72 ms
70,992 KB
testcase_02 AC 73 ms
71,000 KB
testcase_03 AC 72 ms
70,932 KB
testcase_04 AC 71 ms
70,848 KB
testcase_05 AC 71 ms
71,076 KB
testcase_06 AC 75 ms
75,540 KB
testcase_07 AC 71 ms
71,104 KB
testcase_08 AC 71 ms
71,124 KB
testcase_09 AC 71 ms
71,088 KB
testcase_10 AC 111 ms
98,764 KB
testcase_11 AC 110 ms
102,000 KB
testcase_12 AC 111 ms
96,528 KB
testcase_13 AC 72 ms
70,852 KB
testcase_14 AC 109 ms
99,212 KB
testcase_15 AC 104 ms
94,180 KB
testcase_16 AC 107 ms
95,692 KB
testcase_17 AC 107 ms
98,968 KB
testcase_18 AC 100 ms
95,408 KB
testcase_19 AC 89 ms
88,004 KB
testcase_20 AC 91 ms
87,748 KB
testcase_21 AC 100 ms
95,168 KB
testcase_22 AC 109 ms
98,800 KB
testcase_23 AC 109 ms
92,208 KB
testcase_24 AC 70 ms
70,988 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N, D = map(int, input().split())
x = list(map(int, input().split()))
v = list(map(int, input().split()))
V = sum(v)
print((D+V-1)//V)
0