結果

問題 No.69 文字を自由に並び替え
ユーザー takeya_okinotakeya_okino
提出日時 2017-07-14 10:18:49
言語 PHP
(8.3.4)
結果
AC  
実行時間 41 ms / 5,000 ms
コード長 527 bytes
コンパイル時間 446 ms
コンパイル使用メモリ 31,144 KB
実行使用メモリ 31,208 KB
最終ジャッジ日時 2024-05-08 05:29:29
合計ジャッジ時間 1,459 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
30,972 KB
testcase_01 AC 40 ms
30,940 KB
testcase_02 AC 39 ms
31,208 KB
testcase_03 AC 39 ms
30,820 KB
testcase_04 AC 39 ms
30,932 KB
testcase_05 AC 41 ms
31,008 KB
testcase_06 AC 39 ms
31,060 KB
testcase_07 AC 38 ms
31,064 KB
testcase_08 AC 38 ms
31,068 KB
testcase_09 AC 39 ms
30,900 KB
testcase_10 AC 38 ms
31,036 KB
testcase_11 AC 37 ms
30,980 KB
testcase_12 AC 36 ms
31,096 KB
testcase_13 AC 36 ms
30,792 KB
testcase_14 AC 39 ms
30,984 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$A = trim(fgets(STDIN));
$B = trim(fgets(STDIN));
$array1 = array();
for($i = 0; $i < strlen($A); $i++) {
  $str = substr($A, $i, 1);
  if(array_key_exists($str, $array1)) {
    $array1[$str] = $array1[$str] + 1;
  } else {
    $array1[$str] = 1;
  }
}
$array2 = array();
for($i = 0; $i < strlen($B); $i++) {
  $str = substr($B, $i, 1);
  if(array_key_exists($str, $array2)) {
    $array2[$str] = $array2[$str] + 1;
  } else {
    $array2[$str] = 1;
  }
}
$ans = 'NO';
if($array1 == $array2) $ans = 'YES';
print($ans);
?>
0