結果

問題 No.1139 Slime Race
ユーザー ntk-ta01ntk-ta01
提出日時 2020-07-31 23:54:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 102 ms / 2,000 ms
コード長 167 bytes
コンパイル時間 435 ms
コンパイル使用メモリ 87,120 KB
実行使用メモリ 91,376 KB
最終ジャッジ日時 2023-09-15 02:59:48
合計ジャッジ時間 3,853 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 74 ms
71,512 KB
testcase_01 AC 73 ms
71,428 KB
testcase_02 AC 72 ms
71,328 KB
testcase_03 AC 73 ms
71,416 KB
testcase_04 AC 71 ms
71,332 KB
testcase_05 AC 73 ms
71,312 KB
testcase_06 AC 101 ms
76,052 KB
testcase_07 AC 73 ms
71,548 KB
testcase_08 AC 73 ms
71,412 KB
testcase_09 AC 74 ms
71,316 KB
testcase_10 AC 90 ms
85,200 KB
testcase_11 AC 91 ms
84,240 KB
testcase_12 AC 95 ms
86,764 KB
testcase_13 AC 74 ms
71,328 KB
testcase_14 AC 91 ms
85,292 KB
testcase_15 AC 93 ms
84,544 KB
testcase_16 AC 95 ms
86,268 KB
testcase_17 AC 93 ms
85,072 KB
testcase_18 AC 92 ms
83,168 KB
testcase_19 AC 86 ms
80,652 KB
testcase_20 AC 84 ms
80,492 KB
testcase_21 AC 89 ms
83,144 KB
testcase_22 AC 92 ms
85,080 KB
testcase_23 AC 102 ms
91,376 KB
testcase_24 AC 73 ms
71,280 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    N, D = (int(i) for i in input().split())
    _ = input()
    print(0--D//sum(int(i) for i in input().split()))


if __name__ == '__main__':
    main()
0