結果

問題 No.1527 Input Constant is Good
ユーザー takutakutakutaku
提出日時 2021-06-11 21:25:29
言語 PHP
(8.3.4)
結果
AC  
実行時間 45 ms / 2,000 ms
コード長 176 bytes
コンパイル時間 3,407 ms
コンパイル使用メモリ 32,144 KB
実行使用メモリ 31,368 KB
最終ジャッジ日時 2024-05-08 16:49:11
合計ジャッジ時間 3,886 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
31,260 KB
testcase_01 AC 40 ms
30,992 KB
testcase_02 AC 40 ms
31,120 KB
testcase_03 AC 41 ms
31,236 KB
testcase_04 AC 45 ms
30,984 KB
testcase_05 AC 40 ms
31,340 KB
testcase_06 AC 41 ms
30,868 KB
testcase_07 AC 40 ms
31,368 KB
testcase_08 AC 41 ms
31,032 KB
testcase_09 AC 40 ms
30,912 KB
testcase_10 AC 40 ms
31,144 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
    
    $array_number = explode(" ",trim(fgets(STDIN)));
    if($array_number[0] <= $array_number[1]){
        echo "Yes";
    } else {
        echo "No";
    }
    
?>
0