結果

問題 No.69 文字を自由に並び替え
ユーザー
提出日時 2016-01-08 21:17:59
言語 PHP
(8.3.4)
結果
TLE  
実行時間 -
コード長 531 bytes
コンパイル時間 175 ms
コンパイル使用メモリ 32,144 KB
実行使用メモリ 46,028 KB
最終ジャッジ日時 2024-06-27 13:14:55
合計ジャッジ時間 12,622 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 -- -
testcase_02 -- -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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);

$count_key = count($count);

$Ok = true;

foreach($count as $key => $value){
    for($i = 0; $i <= $key; $i ++){
        if($value == 1 or $value % 2 == 1){
           $Ok = false;
           break;
        }else{
            $Ok = true;
        }
    }
}

if($Ok === false){
    echo "NO\n";
}else{
    echo "YES\n";
}
0