結果
問題 |
No.46 はじめのn歩
|
ユーザー |
![]() |
提出日時 | 2018-09-09 18:47:51 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 2 ms / 5,000 ms |
コード長 | 302 bytes |
コンパイル時間 | 653 ms |
コンパイル使用メモリ | 55,900 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-12-23 21:51:48 |
合計ジャッジ時間 | 968 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 10 |
ソースコード
#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 = (a + b - 1) / a; cout << ans << endl; }