結果
| 問題 | No.388 階段 (1) |
| コンテスト | |
| ユーザー |
gedy01221406
|
| 提出日時 | 2019-09-26 17:52:10 |
| 言語 | C++17 (gcc 15.2.0 + boost 1.89.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 2,000 ms |
| コード長 | 190 bytes |
| 記録 | |
| コンパイル時間 | 571 ms |
| コンパイル使用メモリ | 76,160 KB |
| 実行使用メモリ | 6,400 KB |
| 最終ジャッジ日時 | 2026-06-07 22:28:39 |
| 合計ジャッジ時間 | 2,968 ms |
|
ジャッジサーバーID (参考情報) |
judge1_1 / judge2_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 12 |
ソースコード
#include <iostream>
//#include <numeric>
//#include <vector>
//#include <cstdint>
using namespace std;
int main() {
int i, j, k;
cin >> i >> j;
k = i / j + 1;
cout << k ;
return 0;
}
gedy01221406