結果

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

テストケース

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

ソースコード

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