結果
| 問題 | No.46 はじめのn歩 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2025-07-15 10:14:22 |
| 言語 | C++23 (gcc 15.2.0 + boost 1.90.0) |
| 結果 |
AC
|
| 実行時間 | 1 ms / 5,000 ms |
| + 154µs | |
| コード長 | 537 bytes |
| 記録 | |
| コンパイル時間 | 2,030 ms |
| コンパイル使用メモリ | 328,648 KB |
| 実行使用メモリ | 5,888 KB |
| 最終ジャッジ日時 | 2026-07-13 06:06:30 |
| 合計ジャッジ時間 | 3,390 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 10 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
/*
ショトカ登録
cin cout endl return
int double string char pair make_pair first second
sort erase
stoi
auto bool true false
vector queue priority_queue front pop_frpnt
size substr push_back pop_back push pop top
if for while break continue next_permutation
__builtin_popcount
*/
//無限
int inf = 1020304050;
int64_t INF = 1020304050607080900;
//all マクロ
#define all(v) v.begin(), v.end()
int main () {
int a, b; cin >> a >> b;
cout << (b - 1) / a + 1 << endl;
}