結果

問題 No.361 門松ゲーム2
ユーザー takeya_okinotakeya_okino
提出日時 2017-07-17 18:22:41
言語 PHP
(8.3.4)
結果
AC  
実行時間 548 ms / 2,000 ms
コード長 621 bytes
コンパイル時間 1,650 ms
コンパイル使用メモリ 32,016 KB
実行使用メモリ 31,264 KB
最終ジャッジ日時 2024-10-08 07:01:52
合計ジャッジ時間 5,277 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
30,748 KB
testcase_01 AC 38 ms
31,080 KB
testcase_02 AC 38 ms
30,812 KB
testcase_03 AC 38 ms
30,568 KB
testcase_04 AC 38 ms
30,868 KB
testcase_05 AC 38 ms
30,688 KB
testcase_06 AC 39 ms
30,804 KB
testcase_07 AC 39 ms
30,980 KB
testcase_08 AC 39 ms
31,264 KB
testcase_09 AC 39 ms
31,192 KB
testcase_10 AC 39 ms
30,792 KB
testcase_11 AC 39 ms
30,672 KB
testcase_12 AC 38 ms
30,788 KB
testcase_13 AC 38 ms
30,544 KB
testcase_14 AC 261 ms
31,088 KB
testcase_15 AC 53 ms
31,240 KB
testcase_16 AC 248 ms
30,848 KB
testcase_17 AC 189 ms
31,164 KB
testcase_18 AC 65 ms
31,172 KB
testcase_19 AC 190 ms
30,836 KB
testcase_20 AC 49 ms
31,192 KB
testcase_21 AC 236 ms
30,544 KB
testcase_22 AC 548 ms
31,128 KB
testcase_23 AC 221 ms
30,708 KB
testcase_24 AC 218 ms
31,156 KB
testcase_25 AC 219 ms
30,924 KB
testcase_26 AC 230 ms
30,824 KB
testcase_27 AC 236 ms
31,092 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$array = explode(" ", trim(fgets(STDIN)));
$L = $array[0];
$D = $array[1];
$grundy = array();
for($i = 1; $i < 6; $i++) {
  $grundy[$i] = 0;
}
for($i = 6; $i <= $L; $i++) {
  $grundy_array = array();
  for($x = 1; $x <= intdiv($i, 3); $x++) {
    for($y = $x + 1; 2 * $y < $i - $x; $y++) {
      if(2 * $x + $y >= $i - $D) {
        $grundy_array[] = $grundy[$x] ^ $grundy[$y] ^ $grundy[$i - $x - $y];
      }
    }
  }
  for($j = 0; $j <= 1000000000; $j++) {
    if(!in_array($j, $grundy_array)) {
      $grundy[$i] = $j;
      break;
    }
  }
}
$ans = 'kado';
if($grundy[$L] == 0) $ans = 'matsu';
print($ans);
?>
0