結果

問題 No.69 文字を自由に並び替え
ユーザー
提出日時 2016-01-08 21:46:01
言語 PHP
(8.3.4)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 417 bytes
コンパイル時間 73 ms
コンパイル使用メモリ 32,148 KB
実行使用メモリ 32,656 KB
最終ジャッジ日時 2024-05-08 05:02:16
合計ジャッジ時間 1,296 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
30,536 KB
testcase_01 AC 44 ms
31,136 KB
testcase_02 AC 39 ms
30,872 KB
testcase_03 AC 39 ms
30,828 KB
testcase_04 AC 39 ms
31,036 KB
testcase_05 AC 39 ms
30,968 KB
testcase_06 AC 42 ms
31,016 KB
testcase_07 AC 38 ms
30,668 KB
testcase_08 AC 41 ms
30,848 KB
testcase_09 AC 40 ms
30,856 KB
testcase_10 WA -
testcase_11 AC 40 ms
30,952 KB
testcase_12 AC 38 ms
30,700 KB
testcase_13 AC 38 ms
30,752 KB
testcase_14 AC 39 ms
31,168 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php

fscanf(STDIN , "%s", $line_1);
fscanf(STDIN , "%s", $line_2);

$line1 = str_split($line_1);
$line2 = str_split($line_2);

$line_all = array_merge($line1, $line2);

$count = array_count_values($line_all);

asort($count);

$ok = true;

foreach($count as $key => $value){
    if($value == 1 or $value %2 == 1){
        $ok = false;
        break;
    }
}

if($ok === true){
    echo "YES";
}else{
    echo "NO";
}
0