結果

問題 No.1139 Slime Race
ユーザー dangodango
提出日時 2023-06-20 19:04:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 103 ms / 2,000 ms
コード長 92 bytes
コンパイル時間 315 ms
コンパイル使用メモリ 87,316 KB
実行使用メモリ 93,136 KB
最終ジャッジ日時 2023-09-10 15:04:06
合計ジャッジ時間 5,738 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 74 ms
71,468 KB
testcase_01 AC 74 ms
71,496 KB
testcase_02 AC 73 ms
71,156 KB
testcase_03 AC 74 ms
71,360 KB
testcase_04 AC 74 ms
71,328 KB
testcase_05 AC 74 ms
71,172 KB
testcase_06 AC 86 ms
75,688 KB
testcase_07 AC 75 ms
71,476 KB
testcase_08 AC 74 ms
71,396 KB
testcase_09 AC 74 ms
71,172 KB
testcase_10 AC 95 ms
91,176 KB
testcase_11 AC 95 ms
90,212 KB
testcase_12 AC 97 ms
92,352 KB
testcase_13 AC 73 ms
71,176 KB
testcase_14 AC 93 ms
91,112 KB
testcase_15 AC 94 ms
88,880 KB
testcase_16 AC 99 ms
92,264 KB
testcase_17 AC 97 ms
91,104 KB
testcase_18 AC 92 ms
87,404 KB
testcase_19 AC 87 ms
83,076 KB
testcase_20 AC 88 ms
82,912 KB
testcase_21 AC 91 ms
87,652 KB
testcase_22 AC 96 ms
91,052 KB
testcase_23 AC 103 ms
93,136 KB
testcase_24 AC 74 ms
71,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, D = map(int,input().split())
input()
print(-(-D // sum(list(map(int, input().split())))))
0