結果
| 問題 | No.46 はじめのn歩 |
| コンテスト | |
| ユーザー |
AQUA16573837
|
| 提出日時 | 2018-03-31 20:12:48 |
| 言語 | C++11 (gcc 15.2.0 + boost 1.89.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 189 bytes |
| 記録 | |
| コンパイル時間 | 327 ms |
| コンパイル使用メモリ | 57,348 KB |
| 実行使用メモリ | 7,716 KB |
| 最終ジャッジ日時 | 2026-03-12 17:01:36 |
| 合計ジャッジ時間 | 765 ms |
|
ジャッジサーバーID (参考情報) |
judge3_1 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 2 WA * 8 |
ソースコード
#include <stdio.h>
#include <algorithm>
#include <deque>
using namespace std;
using ll = long long;
//46
int main() {
int a, b;
scanf("%d", &a, &b);
printf("%d\n", (b + a - 1) / a);
}
AQUA16573837