結果
| 問題 |
No.46 はじめのn歩
|
| コンテスト | |
| ユーザー |
smicle_cl
|
| 提出日時 | 2017-11-27 18:27:39 |
| 言語 | C (gcc 13.3.0) |
| 結果 |
AC
|
| 実行時間 | 1 ms / 5,000 ms |
| コード長 | 150 bytes |
| コンパイル時間 | 302 ms |
| コンパイル使用メモリ | 28,544 KB |
| 実行使用メモリ | 6,820 KB |
| 最終ジャッジ日時 | 2024-11-27 11:07:12 |
| 合計ジャッジ時間 | 772 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 10 |
ソースコード
#include <stdio.h>
#include <math.h>
int main (void) {
double a, b;
scanf("%lf%lf", &a, &b);
int i = ceil(b / a);
printf("%d\n", i);
return 0;
}
smicle_cl