結果

問題 No.1592 Tenkei 90
ユーザー SKSK
提出日時 2023-01-31 14:45:14
言語 PHP
(8.3.4)
結果
WA  
実行時間 -
コード長 147 bytes
コンパイル時間 896 ms
コンパイル使用メモリ 18,496 KB
実行使用メモリ 18,932 KB
最終ジャッジ日時 2023-09-13 07:48:36
合計ジャッジ時間 1,749 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 15 ms
18,908 KB
testcase_06 AC 15 ms
18,840 KB
testcase_07 AC 15 ms
18,896 KB
testcase_08 AC 15 ms
18,864 KB
testcase_09 AC 14 ms
18,740 KB
testcase_10 AC 14 ms
18,868 KB
testcase_11 AC 15 ms
18,812 KB
testcase_12 AC 15 ms
18,884 KB
testcase_13 AC 15 ms
18,908 KB
testcase_14 AC 15 ms
18,932 KB
testcase_15 AC 15 ms
18,816 KB
testcase_16 AC 15 ms
18,832 KB
testcase_17 WA -
testcase_18 AC 15 ms
18,912 KB
testcase_19 AC 15 ms
18,892 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$s = trim(fgets(STDIN));
$a = "kyoprotenkei90";

sort($s);
sort($a);

if (strcmp($s,$a) == 0) {
    echo "Yes";
}else {
    echo "No";
}


?>
0