結果

問題 No.361 門松ゲーム2
ユーザー 0x19f0x19f
提出日時 2017-12-10 23:06:27
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 644 bytes
コンパイル時間 1,380 ms
コンパイル使用メモリ 164,512 KB
実行使用メモリ 13,752 KB
最終ジャッジ日時 2024-05-07 17:02:02
合計ジャッジ時間 5,029 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
13,752 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 33 ms
6,944 KB
testcase_08 TLE -
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 REP(i, a, n) for(ll i = ((ll) a); i < ((ll) n); i++)
using namespace std;
typedef long long ll;

ll L, D;

bool ok(ll l1, ll l2, ll l3, ll l) {
  if(l1 + l2 + l3 == l)
    if(l1 != l2 && l2 != l3 && l3 != l1)
      if(max({ l1, l2, l3 }) - min({ l1, l2, l3 }) <= D)
        return true;
  return false;
}

ll grundy(ll l) {
  set<ll> st;
  REP(i, 1, l + 1) REP(j, 1, l + 1) REP(k, 1, l + 1) {
    if(ok(i, j, k, l)) st.insert(grundy(i) ^ grundy(j) ^ grundy(k));
  }
  ll g = 0;
  while(st.count(g)) g++;
  return g;
}

int main(void) {
  cin >> L >> D;

  cout << (grundy(L) != 0 ? "kado" : "matsu") << endl;
}
0