結果

問題 No.388 階段 (1)
ユーザー gedy01221406
提出日時 2019-09-26 17:52:10
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 3 ms / 2,000 ms
コード長 190 bytes
コンパイル時間 718 ms
コンパイル使用メモリ 65,096 KB
最終ジャッジ日時 2025-01-07 19:11:01
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 12
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
//#include <numeric>
//#include <vector>
//#include <cstdint>
using namespace std;

int main() {
	int i, j, k;
	cin >> i >> j;
	k = i / j + 1;

	cout << k ;

	return 0;
}
0