結果

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

テストケース

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

ソースコード

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