結果

問題 No.388 階段 (1)
ユーザー kapo
提出日時 2016-07-08 23:33:59
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 344 bytes
コンパイル時間 470 ms
コンパイル使用メモリ 63,116 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-13 07:18:27
合計ジャッジ時間 1,082 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 9 WA * 3
権限があれば一括ダウンロードができます

ソースコード

diff #

#define _CRT_SECURE_NO_WARNINGS // #pragma warning(disable:4996)
#include <iostream>
#include <algorithm>
#include <vector>
#include <string>
#include <functional>
using namespace std; 


int main()
{
	int S, F;
	cin >> S >> F;

	if(!S) {
		cout << 1 << endl;
		return 0;
	}

	int ans = S/F;
	if (S&F) ans++;
	cout << ans << endl;
	return 0;
}
0