結果
問題 | No.46 はじめのn歩 |
ユーザー |
|
提出日時 | 2019-01-13 21:44:16 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 5,000 ms |
コード長 | 313 bytes |
コンパイル時間 | 792 ms |
コンパイル使用メモリ | 66,816 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-12-26 15:24:50 |
合計ジャッジ時間 | 1,305 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 10 |
ソースコード
#include <iostream> #include <stdio.h> #include <cmath> #define FOR(i, a, b) for (int i = a; i < b; i++) #define FORN(i, a, b) for (int i = a; i <= b; i++) using namespace std; // // Created by karayuu on 2019-01-13. // int main() { double a, b; cin >> a >> b; cout << (int) ceil(b / a) << endl; }