結果

問題 No.46 はじめのn歩
ユーザー smicle_cl
提出日時 2017-11-27 18:26:05
言語 C
(gcc 13.3.0)
結果
AC  
実行時間 1 ms / 5,000 ms
コード長 141 bytes
コンパイル時間 290 ms
コンパイル使用メモリ 29,056 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-27 11:07:00
合計ジャッジ時間 794 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 10
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <math.h>
int main (void) {
	double a, b;
	scanf("%lf%lf", &a, &b);
	printf("%.0lf\n", ceil(b / a));
	return 0;
}
0