結果

問題 No.218 経験値1.5倍
ユーザー papinianuspapinianus
提出日時 2016-07-27 08:34:36
言語 PHP
(8.3.4)
結果
WA  
実行時間 -
コード長 214 bytes
コンパイル時間 327 ms
コンパイル使用メモリ 30,600 KB
実行使用メモリ 31,192 KB
最終ジャッジ日時 2024-04-24 09:51:01
合計ジャッジ時間 2,273 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
31,000 KB
testcase_01 AC 33 ms
30,632 KB
testcase_02 AC 34 ms
30,840 KB
testcase_03 AC 36 ms
30,980 KB
testcase_04 AC 38 ms
30,676 KB
testcase_05 AC 38 ms
30,684 KB
testcase_06 AC 38 ms
31,088 KB
testcase_07 WA -
testcase_08 AC 35 ms
31,000 KB
testcase_09 AC 34 ms
30,700 KB
testcase_10 WA -
testcase_11 AC 35 ms
31,156 KB
testcase_12 WA -
testcase_13 AC 38 ms
30,644 KB
testcase_14 AC 36 ms
30,736 KB
testcase_15 WA -
testcase_16 AC 37 ms
30,692 KB
testcase_17 AC 35 ms
31,004 KB
testcase_18 WA -
testcase_19 AC 33 ms
30,796 KB
testcase_20 WA -
testcase_21 RE -
testcase_22 RE -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 32 ms
30,768 KB
testcase_27 WA -
testcase_28 AC 36 ms
30,848 KB
testcase_29 AC 35 ms
31,052 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