結果

問題 No.388 階段 (1)
ユーザー Ryuki87241978
提出日時 2022-01-02 21:29:05
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 27 ms / 2,000 ms
コード長 414 bytes
コンパイル時間 1,929 ms
コンパイル使用メモリ 191,960 KB
最終ジャッジ日時 2025-01-27 08:35:19
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 12
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <vector>
#include <iostream>
#include <map>
#include <string>
#include <cmath>
#include <algorithm>
using namespace std;
#define rep(i, n) for (int i = 0; i < (int)(n); i++)
using ll = long long;
using P = pair<int, int>;

int main() {
    
    ll a,b;
    cin >> a >> b;
    
    if(a<b) {
        cout << 1 << endl;
    }
    else {
        cout << a/b + 1 << endl;
    }
    
}
0