結果

問題 No.361 門松ゲーム2
ユーザー h_nosonh_noson
提出日時 2016-06-19 16:27:09
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 741 bytes
コンパイル時間 485 ms
コンパイル使用メモリ 64,972 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-04-19 13:00:24
合計ジャッジ時間 1,225 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <iostream>
#include <vector>
#include <map>
#include <algorithm>
using namespace std;

#define REP(i,s,e) for (i = s; i <= e; i++)
#define rep(i,n) REP (i,0,(int)(n)-1)
#define RREP(i,s,e) for (i = s; i >= e; i--)
#define rrep(i,n) RREP (i,(int)(n)-1,0)
#define INF (int)1e8
#define MOD (int)(1e9+7)

typedef long long ll;

bool dp[501];

int main(void) {
    int l, d;
    cin >> l >> d;

    int i, j, k;
    REP (i,1,l) {
        bool win = false;
        REP (j,1,i/3) REP (k,j+1,i/2) if (i - (j+k) > k && i - (j+k) - j <= d) {
            win |= true != dp[j] != dp[k] != dp[i-(j+k)];
        }
        dp[i] = win;
    }
    if (dp[l])
        cout << "kado" << endl;
    else
        cout << "matsu" << endl;
    return 0;
}
0