結果

問題 No.46 はじめのn歩
ユーザー r7i2t8a0r7i2t8a0
提出日時 2016-10-31 19:13:37
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 206 bytes
コンパイル時間 193 ms
コンパイル使用メモリ 30,336 KB
実行使用メモリ 9,632 KB
最終ジャッジ日時 2024-05-03 20:08:45
合計ジャッジ時間 12,585 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <stdio.h>
int main(void){
    // Here your code !
    int a,b,cnt = 0;
    
    scanf("%d%d",&a,&b);
    while(b > 0){
        b /= a;
        cnt += 1;
    }
    printf("%d",cnt);
    return 0;
}
0