結果

問題 No.1139 Slime Race
ユーザー chielochielo
提出日時 2020-07-31 21:25:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 114 ms / 2,000 ms
コード長 180 bytes
コンパイル時間 420 ms
コンパイル使用メモリ 87,300 KB
実行使用メモリ 103,108 KB
最終ジャッジ日時 2023-09-15 02:47:56
合計ジャッジ時間 3,968 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 72 ms
71,428 KB
testcase_01 AC 71 ms
71,632 KB
testcase_02 AC 70 ms
71,468 KB
testcase_03 AC 72 ms
71,156 KB
testcase_04 AC 71 ms
71,336 KB
testcase_05 AC 73 ms
71,156 KB
testcase_06 AC 78 ms
75,848 KB
testcase_07 AC 75 ms
71,460 KB
testcase_08 AC 73 ms
71,424 KB
testcase_09 AC 73 ms
71,296 KB
testcase_10 AC 113 ms
100,752 KB
testcase_11 AC 111 ms
103,108 KB
testcase_12 AC 114 ms
98,808 KB
testcase_13 AC 70 ms
71,452 KB
testcase_14 AC 110 ms
100,996 KB
testcase_15 AC 107 ms
96,020 KB
testcase_16 AC 108 ms
97,292 KB
testcase_17 AC 110 ms
100,836 KB
testcase_18 AC 102 ms
96,884 KB
testcase_19 AC 92 ms
89,408 KB
testcase_20 AC 91 ms
89,064 KB
testcase_21 AC 99 ms
96,776 KB
testcase_22 AC 110 ms
100,748 KB
testcase_23 AC 112 ms
95,016 KB
testcase_24 AC 73 ms
71,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def ceildiv(x, y):
    return -(-x // y)

n, d = map(int, input().split())
x = list(map(int, input().split()))
v = list(map(int, input().split()))
sv = sum(v)
print(ceildiv(d, sv))
0