結果

問題 No.388 階段 (1)
ユーザー arutairu
提出日時 2021-06-02 11:40:48
言語 C
(gcc 13.3.0)
結果
AC  
実行時間 1 ms / 2,000 ms
コード長 211 bytes
コンパイル時間 481 ms
コンパイル使用メモリ 27,392 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-11-14 15:04:41
合計ジャッジ時間 1,130 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 12
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <string.h>
#include <stdlib.h>
int main(){
	int s,f;
	scanf("%d%d",&s,&f);
	/*if(b%a>0){
		printf("%d\n",b/a+1);
	}else{
		printf("%d\n",b/a);
	}*/
		printf("%d\n",s/f+1);
return 0;
}
0