結果

問題 No.1592 Tenkei 90
ユーザー SKSK
提出日時 2023-01-11 18:02:51
言語 PHP
(8.3.4)
結果
WA  
実行時間 -
コード長 133 bytes
コンパイル時間 466 ms
コンパイル使用メモリ 18,788 KB
実行使用メモリ 18,956 KB
最終ジャッジ日時 2023-08-24 00:00:09
合計ジャッジ時間 1,825 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 15 ms
18,660 KB
testcase_06 AC 14 ms
18,624 KB
testcase_07 AC 15 ms
18,860 KB
testcase_08 AC 15 ms
18,880 KB
testcase_09 AC 14 ms
18,928 KB
testcase_10 AC 15 ms
18,788 KB
testcase_11 AC 15 ms
18,852 KB
testcase_12 AC 14 ms
18,664 KB
testcase_13 AC 14 ms
18,828 KB
testcase_14 AC 14 ms
18,896 KB
testcase_15 AC 14 ms
18,904 KB
testcase_16 AC 15 ms
18,876 KB
testcase_17 WA -
testcase_18 AC 14 ms
18,624 KB
testcase_19 AC 14 ms
18,908 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

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

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

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

?>
0