結果

問題 No.477 MVP
ユーザー mokrai
提出日時 2017-11-13 00:45:39
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 32 ms / 1,000 ms
コード長 233 bytes
コンパイル時間 157 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 11,264 KB
最終ジャッジ日時 2024-11-24 23:24:29
合計ジャッジ時間 1,158 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 12
権限があれば一括ダウンロードができます

ソースコード

diff #

from decimal import *
import math

def main():
    N, K = map(Decimal, input().split())
    if N % (K + 1) == 0:
        print(int(N/(K + 1)) + 1)
    else: 
        print(math.ceil(N/(K + 1)))

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