結果

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

ソースコード

diff #

#include <bits/stdc++.h>
#define REP(i,n,N) for(int i=(n);i<(int)N;i++)
#define p(s) cout<<(s)<<endl
typedef long long ll;
using namespace std;

int main(){
	int N,K;
	cin>>N>>K;
	int ans;
	if(K==0||N<K)ans=0;
	else if((N+1)==K*2) ans=N-1;
	else ans=N-2;
	p(ans);
	return 0;
}
0