結果
問題 | No.46 はじめのn歩 |
ユーザー | keishi7773 |
提出日時 | 2021-04-24 18:53:14 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 2 ms / 5,000 ms |
コード長 | 1,560 bytes |
コンパイル時間 | 775 ms |
コンパイル使用メモリ | 94,120 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-04 09:10:50 |
合計ジャッジ時間 | 1,186 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | AC | 1 ms
6,940 KB |
testcase_04 | AC | 1 ms
6,944 KB |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | AC | 2 ms
6,944 KB |
testcase_08 | AC | 2 ms
6,940 KB |
testcase_09 | AC | 1 ms
6,940 KB |
ソースコード
// #include <bits/stdc++.h> #include <iostream> // cout, endl, cin #include <string> // string, to_string, stoi #include <vector> // vector #include <algorithm> // min, max, swap, sort, reverse, lower_bound, upper_bound #include <utility> // pair, make_pair #include <tuple> // tuple, make_tuple #include <cstdint> // int64_t, int*_t #include <cstdio> // printf #include <map> // map #include <queue> // queue, priority_queue #include <set> // set #include <stack> // stack #include <deque> // deque #include <unordered_map> // unordered_map #include <unordered_set> // unordered_set #include <bitset> // bitset #include <cmath> #include <limits> #include <stdio.h> #include <string.h> #include <numeric> #define SIZE_OF_ARRAY(array) (sizeof(array) / sizeof(array[0])) #define rep(i, a, b) for (int i = a; i < b; i++) const long long INF = 1LL << 60; typedef long long ll; template <class T> inline bool chmin(T &a, T b) { if (a > b) { a = b; return true; } return false; } template <class T> inline bool chmax(T &a, T b) { if (a < b) { a = b; return true; } return false; } #define all(x) (x).begin(), (x).end() using namespace std; // 上下左右の移動用配列 // セットで上、右、下、左の順番 int dx[4] = {0, 1, 0, -1}; int dy[4] = {-1, 0, 1, 0}; int main(int, char **) { int a, b; cin >> a >> b; if (b % a != 0) { cout << (b / a + 1) << endl; } else { cout << b / a << endl; } }