結果

問題 No.1139 Slime Race
ユーザー xuanjixuanji
提出日時 2020-07-31 21:31:39
言語 PyPy3
(7.3.13)
結果
AC  
実行時間 94 ms / 2,000 ms
コード長 157 bytes
コンパイル時間 287 ms
コンパイル使用メモリ 87,052 KB
実行使用メモリ 86,712 KB
最終ジャッジ日時 2023-09-15 02:50:27
合計ジャッジ時間 3,812 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 72 ms
71,220 KB
testcase_01 AC 73 ms
71,008 KB
testcase_02 AC 71 ms
71,144 KB
testcase_03 AC 71 ms
71,064 KB
testcase_04 AC 70 ms
71,040 KB
testcase_05 AC 70 ms
71,192 KB
testcase_06 AC 75 ms
75,392 KB
testcase_07 AC 72 ms
71,136 KB
testcase_08 AC 72 ms
71,084 KB
testcase_09 AC 72 ms
71,220 KB
testcase_10 AC 89 ms
84,332 KB
testcase_11 AC 89 ms
83,792 KB
testcase_12 AC 92 ms
85,912 KB
testcase_13 AC 73 ms
71,220 KB
testcase_14 AC 89 ms
84,448 KB
testcase_15 AC 90 ms
84,136 KB
testcase_16 AC 93 ms
85,860 KB
testcase_17 AC 90 ms
84,764 KB
testcase_18 AC 87 ms
82,456 KB
testcase_19 AC 82 ms
80,036 KB
testcase_20 AC 83 ms
79,708 KB
testcase_21 AC 85 ms
82,288 KB
testcase_22 AC 89 ms
84,760 KB
testcase_23 AC 94 ms
86,712 KB
testcase_24 AC 70 ms
71,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env pypy3
	
N, D = input().split()
N = int(N)
D = int(D)

input()
speed = sum(map(int, input().split()))

import math

print(math.ceil(D / speed))
0