結果

問題 No.46 はじめのn歩
ユーザー gon_027
提出日時 2018-09-09 18:40:21
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 342 bytes
コンパイル時間 802 ms
コンパイル使用メモリ 56,284 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-12-23 21:03:39
合計ジャッジ時間 1,166 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 9 WA * 1
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
#include <algorithm>
using namespace std;

#define p(x) cout << x << endl;
#define el cout << endl;

int main(){
    cin.tie(0);
    ios::sync_with_stdio(false);

    int a, b;
    cin >> a >> b;

    int ans;
    ans = b / a;

    if(b % a == 1){
        ans = ans + 1;
    }

    cout << ans << endl;
}
0