結果

問題 No.46 はじめのn歩
ユーザー Just5Ahead
提出日時 2020-10-28 05:24:12
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 169 bytes
コンパイル時間 489 ms
コンパイル使用メモリ 62,336 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-21 22:09:29
合計ジャッジ時間 983 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 2 WA * 8
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>

int main() {
    int a, b;
    std::cin >> a >> b;
    int ans = a/b;
    if(a%b != 0) 
        ans++;
    std::cout << ans << "\n";
    return 0;
}
0