結果

問題 No.1139 Slime Race
ユーザー koba-e964koba-e964
提出日時 2021-09-18 11:21:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 91 ms / 2,000 ms
コード長 205 bytes
コンパイル時間 502 ms
コンパイル使用メモリ 87,008 KB
実行使用メモリ 87,088 KB
最終ジャッジ日時 2023-09-12 20:58:05
合計ジャッジ時間 5,392 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 71 ms
71,384 KB
testcase_01 AC 69 ms
71,492 KB
testcase_02 AC 68 ms
71,328 KB
testcase_03 AC 70 ms
71,224 KB
testcase_04 AC 69 ms
71,184 KB
testcase_05 AC 70 ms
71,328 KB
testcase_06 AC 77 ms
75,696 KB
testcase_07 AC 69 ms
71,132 KB
testcase_08 AC 70 ms
71,296 KB
testcase_09 AC 71 ms
71,296 KB
testcase_10 AC 87 ms
84,592 KB
testcase_11 AC 85 ms
84,184 KB
testcase_12 AC 90 ms
86,120 KB
testcase_13 AC 69 ms
71,264 KB
testcase_14 AC 87 ms
84,776 KB
testcase_15 AC 87 ms
84,220 KB
testcase_16 AC 91 ms
85,984 KB
testcase_17 AC 88 ms
84,584 KB
testcase_18 AC 84 ms
82,688 KB
testcase_19 AC 80 ms
79,868 KB
testcase_20 AC 79 ms
79,984 KB
testcase_21 AC 82 ms
82,400 KB
testcase_22 AC 85 ms
84,680 KB
testcase_23 AC 91 ms
87,088 KB
testcase_24 AC 70 ms
71,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3

import sys
readline = sys.stdin.buffer.readline
sys.setrecursionlimit(10 ** 7)

n, d = map(int, input().split())
input()
v = sum(map(int, input().split()))

print((d + v - 1) // v)
0