結果

問題 No.69 文字を自由に並び替え
ユーザー sorchsorch
提出日時 2020-12-29 10:23:54
言語 PHP
(8.3.4)
結果
AC  
実行時間 42 ms / 5,000 ms
コード長 398 bytes
コンパイル時間 335 ms
コンパイル使用メモリ 32,016 KB
実行使用メモリ 31,480 KB
最終ジャッジ日時 2024-10-05 05:00:01
合計ジャッジ時間 1,590 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
31,300 KB
testcase_01 AC 39 ms
30,884 KB
testcase_02 AC 37 ms
31,392 KB
testcase_03 AC 39 ms
31,036 KB
testcase_04 AC 39 ms
31,312 KB
testcase_05 AC 38 ms
31,304 KB
testcase_06 AC 39 ms
31,244 KB
testcase_07 AC 38 ms
31,192 KB
testcase_08 AC 42 ms
31,060 KB
testcase_09 AC 40 ms
31,148 KB
testcase_10 AC 40 ms
31,268 KB
testcase_11 AC 42 ms
31,480 KB
testcase_12 AC 42 ms
31,464 KB
testcase_13 AC 39 ms
31,092 KB
testcase_14 AC 38 ms
30,976 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) {
    $index = array_search($char, $A);
    if ($index === false) {
        $canSort2SameWord = false;
        break;
    }
    array_splice($A, $index, 1);
}

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