結果

問題 No.46 はじめのn歩
ユーザー gon_027
提出日時 2018-09-09 18:31:43
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 334 bytes
コンパイル時間 575 ms
コンパイル使用メモリ 56,212 KB
実行使用メモリ 6,816 KB
最終ジャッジ日時 2024-12-23 20:05:54
合計ジャッジ時間 1,064 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
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++;
    }

    cout << ans << endl;
}
0