結果
| 問題 | No.388 階段 (1) | 
| コンテスト | |
| ユーザー |  | 
| 提出日時 | 2020-10-04 07:39:23 | 
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) | 
| 結果 | 
                                WA
                                 
                             | 
| 実行時間 | - | 
| コード長 | 163 bytes | 
| コンパイル時間 | 580 ms | 
| コンパイル使用メモリ | 66,976 KB | 
| 最終ジャッジ日時 | 2025-01-15 02:19:31 | 
| ジャッジサーバーID (参考情報) | judge3 / judge4 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 2 WA * 1 | 
| other | AC * 10 WA * 2 | 
ソースコード
#include<iostream>
using namespace std;
int main(){
    int x,y,z = 1;
    cin >> x >> y;
    while(x>(y*z))
        z++;
    cout << z <<endl;
    return 0;
}
            
            
            
        