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