結果
| 問題 |
No.46 はじめのn歩
|
| コンテスト | |
| ユーザー |
a_dry_cell
|
| 提出日時 | 2018-02-12 23:01:27 |
| 言語 | C (gcc 13.3.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 166 bytes |
| コンパイル時間 | 876 ms |
| コンパイル使用メモリ | 27,264 KB |
| 実行使用メモリ | 6,820 KB |
| 最終ジャッジ日時 | 2024-11-26 02:39:41 |
| 合計ジャッジ時間 | 646 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | WA * 10 |
ソースコード
#include <stdio.h>
int main (void)
{
int a,b,c;
scanf("%d %d",&a,&b);
printf("\n");
c = b/a;
if (b % a ==0) printf("%d\n",c);
else printf("%d\n",c+1);
}
a_dry_cell