結果

問題 No.361 門松ゲーム2
ユーザー koprickykopricky
提出日時 2017-10-31 12:28:44
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 1,393 bytes
コンパイル時間 1,314 ms
コンパイル使用メモリ 157,292 KB
実行使用メモリ 13,568 KB
最終ジャッジ日時 2024-05-02 01:24:22
合計ジャッジ時間 7,736 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 -- -
testcase_02 -- -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define ll long long
#define INF 1000000005
#define MOD 1000000007
#define EPS 1e-10
#define rep(i,n) for(int i=0;i<(int)n;++i)
#define each(a, b) for(auto (a): (b))
#define all(v) (v).begin(),(v).end()
#define fi first
#define se second
#define pb push_back
#define show(x) cout <<#x<<" = "<<(x)<<endl
#define spair(p) cout <<#p<<": "<<p.fi<<" "<<p.se<<endl
#define svec(v) cout<<#v<<":";rep(kbrni,v.size())cout<<" "<<v[kbrni];cout<<endl
#define sset(s) cout<<#s<<":";each(kbrni,s)cout <<" "<<kbrni;cout<<endl

using namespace std;

typedef pair<int,int>P;

const int MAX_N = 502;

int g[MAX_N];

int main()
{
    cin.tie(0);
    ios::sync_with_stdio(false);
    int L,D;
    cin >> L >> D;
    bool memo[512];
    for(int i=0;i<=L;i++){
        memset(memo,false,512);
        for(int j=1;j<i;j++){
            for(int k=j+1;k<min(i,j+D+1);k++){
                int rem = i - j - k;
                if(rem <= k){
                    break;
                }
                if(rem > j+D){
                    continue;
                }
                memo[g[j]^g[k]^g[rem]] = true;
            }
        }
        int cnt = 0;
        while(1){
            if(memo[cnt]){
                break;
            }
            cnt++;
        }
        g[i] = cnt;
    }
    if(g[L]){
        cout << "kado\n";
    }else{
        cout << "matsu\n";
    }
    return 0;
}
0