結果

問題 No.1139 Slime Race
ユーザー 👑 H20H20
提出日時 2020-11-12 10:29:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 121 ms / 2,000 ms
コード長 129 bytes
コンパイル時間 539 ms
コンパイル使用メモリ 87,204 KB
実行使用メモリ 103,004 KB
最終ジャッジ日時 2023-09-15 03:08:10
合計ジャッジ時間 4,233 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
71,384 KB
testcase_01 AC 78 ms
71,052 KB
testcase_02 AC 79 ms
70,984 KB
testcase_03 AC 78 ms
71,204 KB
testcase_04 AC 78 ms
71,476 KB
testcase_05 AC 78 ms
71,252 KB
testcase_06 AC 83 ms
75,596 KB
testcase_07 AC 79 ms
71,360 KB
testcase_08 AC 78 ms
71,052 KB
testcase_09 AC 77 ms
71,324 KB
testcase_10 AC 117 ms
100,424 KB
testcase_11 AC 119 ms
103,004 KB
testcase_12 AC 121 ms
98,584 KB
testcase_13 AC 74 ms
71,056 KB
testcase_14 AC 114 ms
100,444 KB
testcase_15 AC 111 ms
95,748 KB
testcase_16 AC 115 ms
97,448 KB
testcase_17 AC 113 ms
100,452 KB
testcase_18 AC 104 ms
96,828 KB
testcase_19 AC 99 ms
88,740 KB
testcase_20 AC 100 ms
88,792 KB
testcase_21 AC 101 ms
96,380 KB
testcase_22 AC 115 ms
100,460 KB
testcase_23 AC 116 ms
94,580 KB
testcase_24 AC 74 ms
71,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,D = map(int,input().split())
X = list(map(int,input().split()))
V = list(map(int,input().split()))
SV = sum(V)
print(-(-D//SV))
0