結果
| 問題 | No.388 階段 (1) | 
| コンテスト | |
| ユーザー |  vjudge1 | 
| 提出日時 | 2025-09-04 23:27:55 | 
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) | 
| 結果 | 
                                WA
                                 
                             | 
| 実行時間 | - | 
| コード長 | 166 bytes | 
| コンパイル時間 | 684 ms | 
| コンパイル使用メモリ | 77,720 KB | 
| 実行使用メモリ | 7,716 KB | 
| 最終ジャッジ日時 | 2025-09-04 23:27:57 | 
| 合計ジャッジ時間 | 1,747 ms | 
| ジャッジサーバーID (参考情報) | judge4 / judge2 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 2 WA * 1 | 
| other | AC * 8 WA * 4 | 
ソースコード
#include <iostream>
#include<cmath>
using namespace std;
int main() {
    long long s, f;
    cin >> s >> f;
    cout << ceil((double)s / (double)f);
    return 0;
}
            
            
            
        