結果

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

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using ld = long double;
using vi = vector<int>;
using vl = vector<long long>;
using vc = vector<char>;
using vs = vector<string>;
using vb = vector<bool>;
using Graph = vector<vector<int>>;
#define _GLIBCXX_DEBUG
#define rep(i, n) for (int i = 0; i < (int)(n); i++)
#define ALL(f,c,... ) (([&](decltype((c)) cccc) { return (f)(std::begin(cccc), std::end(cccc), ## __VA_ARGS__); })(c))
const int INF = 1e9;
const int MININF = -1e9;
const ll LINF = 1e18;
const int MOD = 1e9+7;
const int MODD = 998244353;

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