結果

問題 No.521 Cheeses and a Mousetrap(チーズとネズミ捕り)
ユーザー YukiDarumaYukiDaruma
提出日時 2017-06-02 22:28:19
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 330 bytes
コンパイル時間 1,370 ms
コンパイル使用メモリ 165,700 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-09-21 22:29:27
合計ジャッジ時間 2,346 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 28
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main( int argc, char *argv[] )
{
int N;
int K;
int iAns;

	ios::sync_with_stdio( false );
	cin.tie( 0 );

	cin >> N;
	cin >> K;
	if( K <= 0 || N <= 0 || K > N )
		iAns = 0;
	else if( K * 2 - 1 == N )
		iAns = N - 1;
	else
		iAns = N - 2;

	cout << iAns << endl;

	return 0;
}


0