結果

問題 No.46 はじめのn歩
ユーザー aa
提出日時 2021-02-08 01:51:08
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 227 bytes
コンパイル時間 1,248 ms
コンパイル使用メモリ 62,156 KB
実行使用メモリ 7,632 KB
最終ジャッジ日時 2023-09-18 04:16:12
合計ジャッジ時間 13,163 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 -- -
testcase_02 -- -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>

using namespace std;


int main()
{
    int a, b, c;
    
    cin >> a >> b;
    c=0;
    
    while(b > 0)
    {
        b - a;
        c++;
    }
    cout << c << endl;
    return 0;
}

0