結果

問題 No.477 MVP
ユーザー AREIDO2
提出日時 2017-04-15 05:05:15
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 152 bytes
コンパイル時間 493 ms
コンパイル使用メモリ 59,892 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-18 15:42:22
合計ジャッジ時間 998 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 5 WA * 7
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<iomanip>
using namespace std;

int main(){
  int n,k;
  cin >> n >> k;
  cout << n/(k+1)+1 << "\n";
  return 0;
}
0