結果

問題 No.521 Cheeses and a Mousetrap(チーズとネズミ捕り)
コンテスト
ユーザー dnish
提出日時 2017-06-02 22:26:39
言語 C++14
(gcc 15.3.0 + boost 1.92.0 + ACL)
コンパイル:
g++-15 -O2 -lm -std=c++14 -Wuninitialized -DONLINE_JUDGE -o a.out _filename_
実行:
./a.out
結果
AC  
実行時間 1 ms / 2,000 ms
+ 357µs
コード長 277 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 1,002 ms
コンパイル使用メモリ 179,568 KB
実行使用メモリ 9,780 KB
最終ジャッジ日時 2026-09-01 23:44:10
合計ジャッジ時間 2,621 ms
ジャッジサーバーID
(参考情報)
judge3_1 / judge2_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 28
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

#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