結果

問題 No.388 階段 (1)
ユーザー Kurichan0806
提出日時 2017-12-04 15:17:27
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 252 bytes
コンパイル時間 605 ms
コンパイル使用メモリ 77,312 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-28 15:10:19
合計ジャッジ時間 1,361 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 12
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <vector>
#include <string>
#include <iomanip>
#include <cmath>
using namespace std;
#define diff(x,y) ((x > y) ? (x - y) : (y - x))

int main() {
	int x, y;
	cin >> x >> y;
	cout << x / y + 1 << endl;
}
0