結果

問題 No.1139 Slime Race
ユーザー zyxwzyxw
提出日時 2021-02-02 22:06:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,818 ms / 2,000 ms
コード長 158 bytes
コンパイル時間 156 ms
コンパイル使用メモリ 81,916 KB
実行使用メモリ 102,084 KB
最終ジャッジ日時 2024-07-02 08:34:39
合計ジャッジ時間 4,888 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,148 KB
testcase_01 AC 37 ms
53,024 KB
testcase_02 AC 39 ms
52,332 KB
testcase_03 AC 39 ms
57,604 KB
testcase_04 AC 38 ms
57,124 KB
testcase_05 AC 36 ms
52,156 KB
testcase_06 AC 41 ms
59,304 KB
testcase_07 AC 37 ms
51,812 KB
testcase_08 AC 37 ms
52,188 KB
testcase_09 AC 558 ms
58,316 KB
testcase_10 AC 76 ms
100,032 KB
testcase_11 AC 74 ms
99,584 KB
testcase_12 AC 82 ms
102,084 KB
testcase_13 AC 1,818 ms
57,936 KB
testcase_14 AC 75 ms
101,384 KB
testcase_15 AC 75 ms
97,728 KB
testcase_16 AC 85 ms
100,752 KB
testcase_17 AC 79 ms
101,164 KB
testcase_18 AC 68 ms
93,444 KB
testcase_19 AC 60 ms
83,064 KB
testcase_20 AC 60 ms
83,788 KB
testcase_21 AC 69 ms
92,904 KB
testcase_22 AC 77 ms
101,016 KB
testcase_23 AC 83 ms
99,200 KB
testcase_24 AC 37 ms
53,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,D=map(int,input().split())
x=list(map(int,input().split()))
v=list(map(int,input().split()))
f=sum(v)
memo=0
t=0
while memo<D:
    memo+=f
    t+=1
print(t)
0