結果

問題 No.477 MVP
ユーザー yumechiyumechi
提出日時 2017-02-11 00:33:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 34 ms / 1,000 ms
コード長 105 bytes
コンパイル時間 196 ms
コンパイル使用メモリ 82,660 KB
実行使用メモリ 53,684 KB
最終ジャッジ日時 2024-06-09 07:49:52
合計ジャッジ時間 1,125 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,464 KB
testcase_01 AC 31 ms
52,616 KB
testcase_02 AC 32 ms
53,684 KB
testcase_03 AC 32 ms
52,516 KB
testcase_04 AC 31 ms
52,032 KB
testcase_05 AC 30 ms
53,344 KB
testcase_06 AC 34 ms
52,136 KB
testcase_07 AC 32 ms
52,556 KB
testcase_08 AC 31 ms
53,108 KB
testcase_09 AC 32 ms
52,348 KB
testcase_10 AC 32 ms
52,688 KB
testcase_11 AC 31 ms
52,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve():
	n, k = map(int, input().split())
	print(1+n//(k+1))


if __name__=="__main__":
    solve()
0