結果

問題 No.69 文字を自由に並び替え
ユーザー YukiSukoYukiSuko
提出日時 2017-04-26 15:48:27
言語 PHP
(8.3.4)
結果
AC  
実行時間 41 ms / 5,000 ms
コード長 282 bytes
コンパイル時間 165 ms
コンパイル使用メモリ 30,960 KB
実行使用メモリ 30,880 KB
最終ジャッジ日時 2024-05-08 05:25:22
合計ジャッジ時間 1,388 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
30,560 KB
testcase_01 AC 38 ms
30,512 KB
testcase_02 AC 39 ms
30,328 KB
testcase_03 AC 38 ms
30,728 KB
testcase_04 AC 38 ms
30,684 KB
testcase_05 AC 37 ms
30,320 KB
testcase_06 AC 37 ms
30,560 KB
testcase_07 AC 36 ms
30,532 KB
testcase_08 AC 38 ms
30,524 KB
testcase_09 AC 38 ms
30,880 KB
testcase_10 AC 38 ms
30,436 KB
testcase_11 AC 39 ms
30,652 KB
testcase_12 AC 36 ms
30,656 KB
testcase_13 AC 37 ms
30,280 KB
testcase_14 AC 37 ms
30,820 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$array = str_split(trim(fgets(STDIN)));
$array1 = str_split(trim(fgets(STDIN)));


sort($array);
sort($array1);


$t = 0;
for($i=0;$i<count($array);$i++){
    if($array[$i] === $array1[$i]){
     $t++ ;}}
     
    if($t==count($array)){echo "YES\n";}
    else{echo "NO";}
?>
0