結果

問題 No.780 オフ会
ユーザー mesh1nekomesh1neko
提出日時 2020-09-30 10:06:45
言語 PHP
(8.3.4)
結果
WA  
実行時間 -
コード長 157 bytes
コンパイル時間 67 ms
コンパイル使用メモリ 31,116 KB
実行使用メモリ 31,368 KB
最終ジャッジ日時 2024-07-05 17:04:27
合計ジャッジ時間 1,631 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
31,060 KB
testcase_01 AC 35 ms
30,996 KB
testcase_02 AC 33 ms
30,912 KB
testcase_03 AC 32 ms
30,648 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 33 ms
30,964 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 32 ms
31,132 KB
testcase_10 AC 32 ms
30,976 KB
testcase_11 WA -
testcase_12 AC 32 ms
30,756 KB
testcase_13 AC 32 ms
30,932 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 32 ms
31,068 KB
testcase_17 AC 32 ms
30,824 KB
testcase_18 WA -
testcase_19 AC 33 ms
30,816 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
list($a,$b) = explode(" ", trim(fgets(STDIN)));
$remain=$a - $b;
if($remain + 1 <= 0) {
    echo "YES\n";
} else {
    echo "NO\n";
}
echo $remain + 1;
0