結果
問題 | No.1538 引きこもりさんは引き算が得意。 |
ユーザー | yulianess27__ |
提出日時 | 2021-06-17 18:20:09 |
言語 | PHP (8.3.4) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,785 bytes |
コンパイル時間 | 158 ms |
コンパイル使用メモリ | 32,148 KB |
実行使用メモリ | 32,404 KB |
最終ジャッジ日時 | 2024-06-11 01:55:19 |
合計ジャッジ時間 | 4,192 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 45 ms
31,224 KB |
testcase_01 | AC | 43 ms
31,072 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 41 ms
30,944 KB |
testcase_09 | AC | 45 ms
31,504 KB |
testcase_10 | AC | 42 ms
31,460 KB |
testcase_11 | WA | - |
testcase_12 | AC | 41 ms
31,240 KB |
testcase_13 | AC | 42 ms
31,008 KB |
testcase_14 | AC | 43 ms
31,200 KB |
testcase_15 | WA | - |
testcase_16 | AC | 40 ms
31,328 KB |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | AC | 42 ms
31,348 KB |
testcase_22 | AC | 42 ms
31,460 KB |
testcase_23 | AC | 42 ms
31,028 KB |
testcase_24 | AC | 42 ms
31,072 KB |
testcase_25 | WA | - |
testcase_26 | AC | 42 ms
31,500 KB |
testcase_27 | AC | 42 ms
31,236 KB |
testcase_28 | AC | 43 ms
31,504 KB |
testcase_29 | AC | 42 ms
31,016 KB |
testcase_30 | AC | 44 ms
30,844 KB |
testcase_31 | AC | 45 ms
31,140 KB |
testcase_32 | AC | 41 ms
31,096 KB |
testcase_33 | WA | - |
testcase_34 | AC | 43 ms
31,228 KB |
testcase_35 | AC | 41 ms
31,216 KB |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | WA | - |
testcase_40 | AC | 42 ms
31,084 KB |
testcase_41 | AC | 43 ms
31,004 KB |
testcase_42 | WA | - |
testcase_43 | WA | - |
testcase_44 | AC | 44 ms
31,356 KB |
testcase_45 | WA | - |
testcase_46 | WA | - |
testcase_47 | AC | 44 ms
30,936 KB |
testcase_48 | AC | 44 ms
31,128 KB |
testcase_49 | AC | 43 ms
31,192 KB |
testcase_50 | WA | - |
testcase_51 | WA | - |
testcase_52 | AC | 44 ms
31,280 KB |
testcase_53 | AC | 43 ms
30,952 KB |
testcase_54 | WA | - |
testcase_55 | AC | 43 ms
31,224 KB |
testcase_56 | WA | - |
コンパイルメッセージ
No syntax errors detected in Main.php
ソースコード
<?php // 黒板に N 個の整数 が書かれています.引き算が得意なゅゅちゃんは 0 以上 N-1 以下の任意の回数,以下の操作を繰り返すことができます. // 黒板に書かれている数を 2 つ選んで消す.消した数を として, と x-y, y-x のどちらか一方を黒板に書く. // この操作によって,黒板に書かれている数に K が含まれている状態にすることができるか判定してください. list($n, $k) = explode(" ", trim(fgets(STDIN))); $list = explode(" ", trim(fgets(STDIN))); if (in_array($k, $list)) echo 'Yes'; // 順列 function permutations(array $elements) { global $k; if (count($elements) <= 1) { yield $elements; } else { foreach (permutations(array_slice($elements, 1)) as $permutation) { foreach (range(0, count($elements) - 1) as $i) { // yield array_merge( array_slice($permutation, 0, $i), [$elements[0]], array_slice($permutation, $i) ); $p = array_merge( array_slice($permutation, 0, $i), [$elements[0]], array_slice($permutation, $i) ); $r = []; foreach($p as $v) { if (empty($r)) { $r = [$v, -$v]; } else { $t = []; foreach($r as $rr) { $t[] = $rr + $v; $t[] = $rr - $v; } if (in_array($k, $r)) { return true; } $r = array_unique($t); } } } } } } $ret = permutations($list); echo $ret?"Yes":"No";