結果

問題 No.1139 Slime Race
ユーザー anagohirameanagohirame
提出日時 2020-07-31 21:30:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 113 ms / 2,000 ms
コード長 127 bytes
コンパイル時間 275 ms
コンパイル使用メモリ 86,940 KB
実行使用メモリ 102,896 KB
最終ジャッジ日時 2023-09-15 02:49:48
合計ジャッジ時間 3,912 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 70 ms
71,464 KB
testcase_01 AC 72 ms
71,588 KB
testcase_02 AC 72 ms
71,464 KB
testcase_03 AC 71 ms
71,444 KB
testcase_04 AC 71 ms
71,464 KB
testcase_05 AC 72 ms
71,368 KB
testcase_06 AC 76 ms
75,732 KB
testcase_07 AC 72 ms
71,440 KB
testcase_08 AC 73 ms
71,140 KB
testcase_09 AC 71 ms
71,308 KB
testcase_10 AC 110 ms
100,608 KB
testcase_11 AC 109 ms
102,896 KB
testcase_12 AC 113 ms
98,720 KB
testcase_13 AC 72 ms
71,296 KB
testcase_14 AC 112 ms
100,796 KB
testcase_15 AC 107 ms
95,968 KB
testcase_16 AC 113 ms
97,876 KB
testcase_17 AC 109 ms
100,872 KB
testcase_18 AC 101 ms
96,928 KB
testcase_19 AC 93 ms
89,108 KB
testcase_20 AC 92 ms
88,952 KB
testcase_21 AC 102 ms
96,656 KB
testcase_22 AC 111 ms
100,708 KB
testcase_23 AC 113 ms
94,920 KB
testcase_24 AC 71 ms
71,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, d = map(int, input().split())
x = list(map(int, input().split()))
v = list(map(int, input().split()))
print((d-1)//sum(v)+1)
0