結果

問題 No.477 MVP
ユーザー syunsukesyunsuke
提出日時 2020-11-01 13:43:56
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 51 bytes
コンパイル時間 155 ms
コンパイル使用メモリ 82,196 KB
実行使用メモリ 53,436 KB
最終ジャッジ日時 2024-07-22 05:44:52
合計ジャッジ時間 1,355 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,416 KB
testcase_01 AC 41 ms
52,404 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 38 ms
53,436 KB
testcase_05 WA -
testcase_06 AC 37 ms
53,288 KB
testcase_07 AC 38 ms
53,012 KB
testcase_08 AC 39 ms
52,956 KB
testcase_09 AC 39 ms
51,836 KB
testcase_10 AC 39 ms
52,332 KB
testcase_11 AC 37 ms
52,316 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K=map(int,input().split())
N-=1
print(N//(K+1)+1)
0