結果
| 問題 |
No.388 階段 (1)
|
| コンテスト | |
| ユーザー |
torith
|
| 提出日時 | 2017-03-18 21:28:27 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 247 bytes |
| コンパイル時間 | 1,161 ms |
| コンパイル使用メモリ | 157,436 KB |
| 実行使用メモリ | 5,376 KB |
| 最終ジャッジ日時 | 2024-07-04 19:36:10 |
| 合計ジャッジ時間 | 2,056 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 WA * 1 |
| other | AC * 10 RE * 2 |
ソースコード
/*
* 388.cpp
*/
//include files
#include<bits/stdc++.h>
using namespace std;
//DEFINE CONSTANT
//DEFINE PROTOTYPE
int main(){
int a,b;
cin >> a >> b;
if(b%a == 0) cout << a/b << endl;
else cout << (int)a/b+1 << endl;
return 0;
}
torith