結果
| 問題 |
No.46 はじめのn歩
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2020-10-24 17:15:48 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 148 bytes |
| コンパイル時間 | 831 ms |
| コンパイル使用メモリ | 76,764 KB |
| 最終ジャッジ日時 | 2025-01-15 15:07:16 |
|
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 4 WA * 6 |
ソースコード
#include<iostream>
#include<cmath>
using namespace std;
int main(){
int a,b;
cin >> a >> b;
cout << ceil(b/a) << endl;
return 0;
}