結果

問題 No.1139 Slime Race
ユーザー xuanjixuanji
提出日時 2020-07-31 21:31:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 60 ms / 2,000 ms
コード長 157 bytes
コンパイル時間 201 ms
コンパイル使用メモリ 82,452 KB
実行使用メモリ 81,136 KB
最終ジャッジ日時 2024-07-02 08:17:55
合計ジャッジ時間 2,417 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,212 KB
testcase_01 AC 37 ms
53,132 KB
testcase_02 AC 37 ms
52,696 KB
testcase_03 AC 36 ms
53,080 KB
testcase_04 AC 36 ms
52,736 KB
testcase_05 AC 36 ms
53,484 KB
testcase_06 AC 40 ms
59,052 KB
testcase_07 AC 36 ms
53,564 KB
testcase_08 AC 36 ms
52,656 KB
testcase_09 AC 36 ms
53,200 KB
testcase_10 AC 58 ms
76,036 KB
testcase_11 AC 54 ms
75,940 KB
testcase_12 AC 60 ms
80,136 KB
testcase_13 AC 39 ms
53,792 KB
testcase_14 AC 55 ms
75,196 KB
testcase_15 AC 54 ms
75,860 KB
testcase_16 AC 58 ms
79,420 KB
testcase_17 AC 56 ms
75,724 KB
testcase_18 AC 53 ms
72,620 KB
testcase_19 AC 48 ms
67,348 KB
testcase_20 AC 49 ms
67,228 KB
testcase_21 AC 52 ms
72,480 KB
testcase_22 AC 55 ms
75,912 KB
testcase_23 AC 59 ms
81,136 KB
testcase_24 AC 38 ms
52,732 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