結果

問題 No.1538 引きこもりさんは引き算が得意。
ユーザー yulianess27__yulianess27__
提出日時 2021-06-17 19:19:54
言語 PHP
(843.2)
結果
WA  
実行時間 -
コード長 1,316 bytes
コンパイル時間 3,246 ms
コンパイル使用メモリ 34,396 KB
実行使用メモリ 69,892 KB
最終ジャッジ日時 2025-01-03 09:24:20
合計ジャッジ時間 47,076 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
39,976 KB
testcase_01 AC 47 ms
69,200 KB
testcase_02 AC 47 ms
39,968 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 56 ms
40,316 KB
testcase_09 AC 53 ms
69,576 KB
testcase_10 AC 59 ms
69,244 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 50 ms
69,312 KB
testcase_14 AC 53 ms
39,992 KB
testcase_15 WA -
testcase_16 AC 55 ms
40,372 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 50 ms
40,176 KB
testcase_22 AC 51 ms
40,388 KB
testcase_23 AC 54 ms
39,688 KB
testcase_24 AC 51 ms
35,028 KB
testcase_25 WA -
testcase_26 AC 55 ms
34,556 KB
testcase_27 AC 51 ms
34,784 KB
testcase_28 AC 50 ms
34,952 KB
testcase_29 AC 51 ms
34,992 KB
testcase_30 AC 52 ms
34,348 KB
testcase_31 AC 50 ms
34,484 KB
testcase_32 AC 49 ms
34,856 KB
testcase_33 WA -
testcase_34 AC 50 ms
34,748 KB
testcase_35 AC 51 ms
34,548 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 TLE -
testcase_39 TLE -
testcase_40 AC 51 ms
34,748 KB
testcase_41 AC 50 ms
34,640 KB
testcase_42 WA -
testcase_43 TLE -
testcase_44 AC 57 ms
35,096 KB
testcase_45 WA -
testcase_46 TLE -
testcase_47 TLE -
testcase_48 TLE -
testcase_49 TLE -
testcase_50 WA -
testcase_51 TLE -
testcase_52 TLE -
testcase_53 TLE -
testcase_54 TLE -
testcase_55 TLE -
testcase_56 TLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
list($n, $k) = explode(" ", trim(fgets(STDIN)));
$list = explode(" ", trim(fgets(STDIN)));
if (in_array($k, $list)) echo 'Yes';

// 順列操作
function permutations($a, $s = '') {
    global $k;
  $r = array();
  if (count($a) && is_array($a)) {
    foreach ($a as $k => $v) {
      if ($s != '' ) {
          $_s = $s .','.$v;
      } else {
          $_s = $v;
      }
      //もらった1文字を除いた文字の配列を作って
      $_a = $a;
      unset($_a[$k]);
      //再帰呼び出し
      $_r = permutations($_a, $_s);
      if (!empty($_r)) {
          // 計算チェック
          $list = [];
          foreach(explode(",", $_r[0]) as $v) {
            if (empty($list)) {
                $list = [$v, - $v];
            } else {
                foreach($list as $l) {
                    $tmp = [$l + $v, $l - $v];
                }
                if (in_array($k, $tmp)) {
                    echo 'Yes';
                    exit;
                }
            }
          }
      }
      //返り値にする変数に結果を追加
    //   $r = array_merge($r, $_r);
    }
  } else {
    //第1引数が空っぽの配列だったら、再帰呼び出しはここでストップ
    //返り値はこれだけ
    $r[] = $s;
  }
  return $r;
}

permutations($list);

echo "No";
0