結果

問題 No.477 MVP
ユーザー 👑 yumechiyumechi
提出日時 2017-02-11 00:33:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 78 ms / 1,000 ms
コード長 105 bytes
コンパイル時間 297 ms
コンパイル使用メモリ 87,240 KB
実行使用メモリ 71,208 KB
最終ジャッジ日時 2023-08-28 12:26:46
合計ジャッジ時間 2,180 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
71,104 KB
testcase_01 AC 77 ms
70,700 KB
testcase_02 AC 76 ms
70,904 KB
testcase_03 AC 76 ms
71,176 KB
testcase_04 AC 75 ms
71,000 KB
testcase_05 AC 78 ms
70,888 KB
testcase_06 AC 77 ms
71,020 KB
testcase_07 AC 76 ms
71,124 KB
testcase_08 AC 76 ms
71,056 KB
testcase_09 AC 77 ms
71,096 KB
testcase_10 AC 77 ms
71,208 KB
testcase_11 AC 77 ms
71,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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


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