結果

問題 No.46 はじめのn歩
ユーザー Vertigo
提出日時 2024-02-26 15:34:10
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 146 bytes
コンパイル時間 696 ms
コンパイル使用メモリ 65,500 KB
最終ジャッジ日時 2025-02-19 21:34:21
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 10
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>

using namespace std;

int main(){
    int n, m;
    cin >> n >> m;
    int res = (n +  m- 1) / n;
    cout << res << endl;
}
0