結果
| 問題 | No.1139 Slime Race |
| コンテスト | |
| ユーザー |
uni_python
|
| 提出日時 | 2020-08-01 11:47:38 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
AC
|
| 実行時間 | 90 ms / 2,000 ms |
| + 351µs | |
| コード長 | 281 bytes |
| 記録 | |
| コンパイル時間 | 243 ms |
| コンパイル使用メモリ | 95,984 KB |
| 実行使用メモリ | 110,848 KB |
| 最終ジャッジ日時 | 2026-08-03 22:03:59 |
| 合計ジャッジ時間 | 4,272 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 22 |
ソースコード
import sys
input=sys.stdin.readline
def I(): return int(input())
def MI(): return map(int, input().split())
def LI(): return list(map(int, input().split()))
def main():
mod=10**9+7
N,D=MI()
x=LI()
v=LI()
V=sum(v)
ans=(D+V-1)//V
print(ans)
main()
uni_python