結果

問題 No.477 MVP
ユーザー TAKINBORITAKINBORI
提出日時 2019-01-10 17:35:59
言語 C++11
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 200 bytes
コンパイル時間 342 ms
コンパイル使用メモリ 54,248 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-24 03:48:09
合計ジャッジ時間 828 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 5 WA * 7
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>

int main()
{
    int N = 0;
    int K = 0;
    std::cin >> N;
    std::cin >> K;
    int mustdmg = 0;
    mustdmg = N / (K + 1) + 1;
    std::cout << mustdmg;
    
    return 0;
}
0