結果

問題 No.477 MVP
ユーザー 👑 H20H20
提出日時 2021-01-11 12:50:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 36 ms / 1,000 ms
コード長 49 bytes
コンパイル時間 185 ms
コンパイル使用メモリ 82,500 KB
実行使用メモリ 53,120 KB
最終ジャッジ日時 2024-05-01 06:46:31
合計ジャッジ時間 1,278 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,016 KB
testcase_01 AC 32 ms
53,120 KB
testcase_02 AC 32 ms
51,812 KB
testcase_03 AC 32 ms
52,216 KB
testcase_04 AC 32 ms
53,084 KB
testcase_05 AC 32 ms
52,808 KB
testcase_06 AC 31 ms
52,424 KB
testcase_07 AC 30 ms
52,372 KB
testcase_08 AC 36 ms
52,140 KB
testcase_09 AC 34 ms
51,984 KB
testcase_10 AC 33 ms
52,080 KB
testcase_11 AC 31 ms
53,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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