結果

問題 No.1799 Summer Day
ユーザー SKSK
提出日時 2022-12-21 14:49:40
言語 PHP
(8.3.4)
結果
AC  
実行時間 35 ms / 2,000 ms
コード長 134 bytes
コンパイル時間 112 ms
コンパイル使用メモリ 31,888 KB
実行使用メモリ 31,700 KB
最終ジャッジ日時 2024-04-29 03:19:57
合計ジャッジ時間 1,648 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
31,700 KB
testcase_01 AC 33 ms
31,320 KB
testcase_02 AC 32 ms
31,484 KB
testcase_03 AC 35 ms
31,196 KB
testcase_04 AC 31 ms
31,296 KB
testcase_05 AC 31 ms
31,180 KB
testcase_06 AC 30 ms
31,504 KB
testcase_07 AC 31 ms
31,528 KB
testcase_08 AC 31 ms
31,344 KB
testcase_09 AC 30 ms
31,368 KB
testcase_10 AC 31 ms
31,548 KB
testcase_11 AC 32 ms
31,024 KB
testcase_12 AC 32 ms
31,460 KB
testcase_13 AC 32 ms
31,436 KB
testcase_14 AC 31 ms
31,520 KB
testcase_15 AC 32 ms
31,284 KB
testcase_16 AC 30 ms
31,424 KB
testcase_17 AC 31 ms
31,468 KB
testcase_18 AC 32 ms
31,628 KB
testcase_19 AC 32 ms
31,092 KB
testcase_20 AC 30 ms
31,496 KB
testcase_21 AC 31 ms
31,240 KB
testcase_22 AC 30 ms
31,616 KB
testcase_23 AC 31 ms
31,360 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
[$n,$s] = explode(" ",trim(fgets(STDIN)));

if($s >= 25 && $s <= 29 * $n){
    echo "Yes"."\n";
}else{
    echo "No"."\n";
}

?>
0