結果

問題 No.477 MVP
ユーザー 👑 H20H20
提出日時 2021-01-11 12:45:27
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 51 bytes
コンパイル時間 242 ms
コンパイル使用メモリ 82,192 KB
実行使用メモリ 53,688 KB
最終ジャッジ日時 2024-05-01 06:46:27
合計ジャッジ時間 1,462 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,364 KB
testcase_01 AC 37 ms
52,208 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 36 ms
52,352 KB
testcase_05 WA -
testcase_06 AC 35 ms
53,688 KB
testcase_07 AC 36 ms
52,228 KB
testcase_08 AC 36 ms
52,420 KB
testcase_09 AC 40 ms
51,996 KB
testcase_10 AC 36 ms
52,136 KB
testcase_11 AC 36 ms
51,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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