結果

問題 No.69 文字を自由に並び替え
ユーザー y2ky2k
提出日時 2015-12-01 22:15:31
言語 PHP
(8.3.4)
結果
WA  
実行時間 -
コード長 425 bytes
コンパイル時間 73 ms
コンパイル使用メモリ 32,144 KB
実行使用メモリ 32,652 KB
最終ジャッジ日時 2024-06-27 13:13:10
合計ジャッジ時間 1,313 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

<?php
fscanf(STDIN, "%s", $input1);
fscanf(STDIN, "%s", $input2);

// $input1 = 'dog';
// $input2 = 'god';


$a = str_split($input1);
$b = str_split($input2);

asort($a);
asort($b);

// var_dump($a);
// var_dump($b);


// var_dump(array_diff($a, $b));
$ret = array_diff($a, $b);
// echo empty($ret);


if (empty($ret)) {
    echo "YES";
} else {
    echo "NO";
}

// echo ($a == $b) ? 'YES' : 'NO';


// echo $ret;
echo "\n";
0