結果
問題 | No.46 はじめのn歩 |
ユーザー |
![]() |
提出日時 | 2016-08-02 21:13:07 |
言語 | C90 (gcc 12.3.0) |
結果 |
AC
|
実行時間 | 1 ms / 5,000 ms |
コード長 | 197 bytes |
コンパイル時間 | 624 ms |
コンパイル使用メモリ | 20,096 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-06 23:38:14 |
合計ジャッジ時間 | 1,117 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 10 |
コンパイルメッセージ
main.c: In function ‘main’: main.c:12:9: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 12 | scanf("%d%d",&a,&b); | ^~~~~~~~~~~~~~~~~~~
ソースコード
#include<stdio.h> int main(){ int a; int b; int c; int d; scanf("%d%d",&a,&b); c=b/a; d=b%a; while(d){ c++; d=d/a; } printf("%d",c); return 0; }