結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
32,140 KB
testcase_01 AC 42 ms
32,272 KB
testcase_02 AC 42 ms
32,340 KB
testcase_03 AC 41 ms
32,524 KB
testcase_04 AC 42 ms
32,400 KB
testcase_05 AC 43 ms
32,216 KB
testcase_06 AC 43 ms
32,340 KB
testcase_07 AC 41 ms
32,272 KB
testcase_08 AC 42 ms
32,400 KB
testcase_09 AC 42 ms
32,400 KB
testcase_10 WA -
testcase_11 AC 41 ms
32,400 KB
testcase_12 AC 42 ms
32,528 KB
testcase_13 AC 41 ms
32,400 KB
testcase_14 AC 41 ms
32,404 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