結果

問題 No.218 経験値1.5倍
ユーザー papinianuspapinianus
提出日時 2016-07-27 08:34:36
言語 PHP
(8.3.4)
結果
WA  
実行時間 -
コード長 214 bytes
コンパイル時間 88 ms
コンパイル使用メモリ 32,400 KB
実行使用メモリ 32,656 KB
最終ジャッジ日時 2024-11-06 17:20:51
合計ジャッジ時間 2,470 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
31,140 KB
testcase_01 AC 43 ms
31,232 KB
testcase_02 AC 42 ms
30,880 KB
testcase_03 AC 43 ms
31,336 KB
testcase_04 AC 43 ms
30,800 KB
testcase_05 AC 43 ms
30,944 KB
testcase_06 AC 43 ms
31,044 KB
testcase_07 WA -
testcase_08 AC 43 ms
31,372 KB
testcase_09 AC 43 ms
31,096 KB
testcase_10 WA -
testcase_11 AC 43 ms
31,080 KB
testcase_12 WA -
testcase_13 AC 44 ms
31,080 KB
testcase_14 AC 44 ms
30,904 KB
testcase_15 WA -
testcase_16 AC 43 ms
31,208 KB
testcase_17 AC 43 ms
31,272 KB
testcase_18 WA -
testcase_19 AC 44 ms
30,776 KB
testcase_20 WA -
testcase_21 RE -
testcase_22 RE -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 42 ms
31,444 KB
testcase_27 WA -
testcase_28 AC 43 ms
31,160 KB
testcase_29 AC 42 ms
30,728 KB
testcase_30 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$a = trim(fgets(STDIN));
$b = trim(fgets(STDIN));
$c = trim(fgets(STDIN));

$normal = floor($a/$b);
$extend = floor($a/$c);
if($extend/$normal <= 2/3) {
    echo 'YES';
} else {
    echo 'NO';
}
echo PHP_EOL;
0