結果
問題 |
No.46 はじめのn歩
|
ユーザー |
![]() |
提出日時 | 2017-03-16 15:09:11 |
言語 | C (gcc 13.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 156 bytes |
コンパイル時間 | 229 ms |
コンパイル使用メモリ | 27,520 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-04 02:38:32 |
合計ジャッジ時間 | 627 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 3 WA * 7 |
ソースコード
#include<stdio.h> int main(){ int a,b; int c; scanf("%d %d",&a,&b); c=b/a; if(c==0) printf("%d\n",c); else printf("%d\n",c+1); return 0; }