結果
| 問題 |
No.46 はじめのn歩
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2018-02-27 17:15:23 |
| 言語 | C (gcc 13.3.0) |
| 結果 |
AC
|
| 実行時間 | 1 ms / 5,000 ms |
| コード長 | 172 bytes |
| コンパイル時間 | 1,122 ms |
| コンパイル使用メモリ | 26,752 KB |
| 実行使用メモリ | 5,248 KB |
| 最終ジャッジ日時 | 2024-11-29 03:33:29 |
| 合計ジャッジ時間 | 1,279 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 10 |
ソースコード
#include <stdio.h>
int main()
{
int a, b, total;
scanf("%d %d", &a, &b);
total = b / a;
if(b % a != 0) total++;
printf("%d\n", total);
return 0;
}