結果
| 問題 | No.46 はじめのn歩 |
| コンテスト | |
| ユーザー |
r7i2t8a0
|
| 提出日時 | 2016-10-31 19:13:37 |
| 言語 | C++14 (gcc 15.2.0 + boost 1.89.0) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 206 bytes |
| 記録 | |
| コンパイル時間 | 193 ms |
| コンパイル使用メモリ | 36,736 KB |
| 実行使用メモリ | 9,984 KB |
| 最終ジャッジ日時 | 2026-05-19 05:49:12 |
| 合計ジャッジ時間 | 13,508 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | TLE * 1 -- * 9 |
ソースコード
#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;
}
r7i2t8a0