結果

問題 No.69 文字を自由に並び替え
ユーザー mondomondo
提出日時 2019-07-25 21:57:25
言語 PHP
(8.3.4)
結果
WA  
実行時間 -
コード長 335 bytes
コンパイル時間 75 ms
コンパイル使用メモリ 32,272 KB
実行使用メモリ 32,528 KB
最終ジャッジ日時 2024-07-02 06:18:34
合計ジャッジ時間 1,375 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

<?php
while($line = fgets(STDIN)){
    $array[] = trim($line);
}
$a = str_split($array[0]);
$b = str_split($array[1]);
asort($a);
asort($b);
$ans = NULL;
foreach ($a as $i) {
    foreach ($b as $j) {
        if ($i ===$j){
            $ans = "YES\n";            
        } else {
            $ans = "NO\n";
        }
    }
}
echo $ans;
0