結果
| 問題 | No.388 階段 (1) | 
| コンテスト | |
| ユーザー |  | 
| 提出日時 | 2022-04-25 00:22:36 | 
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) | 
| 結果 | 
                                AC
                                 
                             | 
| 実行時間 | 2 ms / 2,000 ms | 
| コード長 | 229 bytes | 
| コンパイル時間 | 1,177 ms | 
| コンパイル使用メモリ | 66,560 KB | 
| 実行使用メモリ | 5,376 KB | 
| 最終ジャッジ日時 | 2024-06-26 11:15:04 | 
| 合計ジャッジ時間 | 1,180 ms | 
| ジャッジサーバーID (参考情報) | judge2 / judge1 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 3 | 
| other | AC * 12 | 
ソースコード
#include <iostream>
#include<math.h>
using namespace std;
using ll = long long;
#define rep(i, n) for (int i = 0; i < (int)(n); i++)
int main()
{
    int s, f;
    cin >> s >> f;
    cout << (s / f) + 1 << endl;
    return 0;
}
            
            
            
        