結果

問題 No.69 文字を自由に並び替え
ユーザー sorchsorch
提出日時 2020-12-29 09:57:24
言語 PHP
(8.3.4)
結果
WA  
実行時間 -
コード長 331 bytes
コンパイル時間 1,780 ms
コンパイル使用メモリ 32,148 KB
実行使用メモリ 32,400 KB
最終ジャッジ日時 2024-10-05 03:36:37
合計ジャッジ時間 3,259 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
31,960 KB
testcase_01 AC 36 ms
32,148 KB
testcase_02 AC 35 ms
32,276 KB
testcase_03 AC 35 ms
32,276 KB
testcase_04 WA -
testcase_05 AC 35 ms
32,400 KB
testcase_06 AC 35 ms
32,016 KB
testcase_07 AC 35 ms
32,144 KB
testcase_08 AC 36 ms
32,144 KB
testcase_09 AC 36 ms
32,276 KB
testcase_10 AC 36 ms
32,144 KB
testcase_11 AC 35 ms
32,148 KB
testcase_12 AC 36 ms
32,144 KB
testcase_13 AC 35 ms
32,272 KB
testcase_14 AC 36 ms
32,148 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php

/**
 * @see https://yukicoder.me/problems/35
 */

$A = str_split(trim(fgets(STDIN)));
$B = str_split(trim(fgets(STDIN)));

$canSort2SameWord = true;
foreach ($B as $char) {
    if (!in_array($char, $A)) {
        $canSort2SameWord = false;
        break;
    }
}

$ret = ($canSort2SameWord) ? 'YES' : 'NO';
echo $ret . "\n";
0