結果

問題 No.63 ポッキーゲーム
ユーザー Sota
提出日時 2022-05-09 16:22:15
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 464 bytes
コンパイル時間 752 ms
コンパイル使用メモリ 68,180 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-07-16 14:19:35
合計ジャッジ時間 1,325 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 22
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>		//cin, cout
#include <vector>		//vector
#include <algorithm>	//sort,min,max,count
#include <string>		//string,getline, to_string
#include <cstdlib>		//abs(int)
#include <utility>		//swap, pair

using namespace std;

int main() {

	int L, K;
	cin >> L >> K;

	int ans;
	int mod;

	if (L <= K * 2) {
		ans = 0;
	}
	else {
		ans = (L / (2 * K)) * K;
		mod = L % (2 * K);
		if (mod == 0) {
			ans -= K;
		}
	}

	cout << ans << endl;

	return 0;

}
0