結果
| 問題 |
No.388 階段 (1)
|
| コンテスト | |
| ユーザー |
K_Meraq6
|
| 提出日時 | 2020-11-02 17:48:03 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 199 bytes |
| コンパイル時間 | 466 ms |
| コンパイル使用メモリ | 64,308 KB |
| 実行使用メモリ | 6,948 KB |
| 最終ジャッジ日時 | 2024-07-22 06:24:53 |
| 合計ジャッジ時間 | 1,445 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 WA * 2 |
| other | WA * 10 RE * 2 |
ソースコード
#include <iostream>
using namespace std;
int main() {
int s, f; cin >> s >> f;
if (f % s == 0) {
cout << f / s + 1 << endl;
}
else {
cout << f / s + 1 << endl;
}
}
K_Meraq6