結果

問題 No.218 経験値1.5倍
ユーザー 綾地寧々綾地寧々
提出日時 2015-05-29 22:26:34
言語 PHP
(8.3.4)
結果
AC  
実行時間 42 ms / 2,000 ms
コード長 219 bytes
コンパイル時間 530 ms
コンパイル使用メモリ 30,460 KB
実行使用メモリ 31,048 KB
最終ジャッジ日時 2024-06-09 09:17:46
合計ジャッジ時間 2,688 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
30,600 KB
testcase_01 AC 41 ms
30,772 KB
testcase_02 AC 40 ms
30,556 KB
testcase_03 AC 41 ms
30,724 KB
testcase_04 AC 41 ms
30,788 KB
testcase_05 AC 42 ms
30,984 KB
testcase_06 AC 38 ms
30,900 KB
testcase_07 AC 38 ms
30,616 KB
testcase_08 AC 40 ms
30,720 KB
testcase_09 AC 40 ms
30,492 KB
testcase_10 AC 38 ms
30,692 KB
testcase_11 AC 39 ms
30,644 KB
testcase_12 AC 41 ms
30,656 KB
testcase_13 AC 41 ms
30,880 KB
testcase_14 AC 39 ms
31,020 KB
testcase_15 AC 38 ms
30,892 KB
testcase_16 AC 37 ms
30,592 KB
testcase_17 AC 40 ms
30,508 KB
testcase_18 AC 41 ms
30,572 KB
testcase_19 AC 38 ms
31,048 KB
testcase_20 AC 39 ms
30,644 KB
testcase_21 AC 42 ms
30,996 KB
testcase_22 AC 41 ms
30,584 KB
testcase_23 AC 40 ms
30,496 KB
testcase_24 AC 40 ms
30,580 KB
testcase_25 AC 41 ms
30,724 KB
testcase_26 AC 41 ms
30,756 KB
testcase_27 AC 41 ms
30,932 KB
testcase_28 AC 40 ms
30,592 KB
testcase_29 AC 41 ms
30,992 KB
testcase_30 AC 39 ms
30,572 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$a = trim(fgets(STDIN));
$b = trim(fgets(STDIN));
$c = trim(fgets(STDIN));
$normal = ceil($a/$b);
$campaign = ceil($a/$c);
if ( ($normal / $campaign) >= 1.5 ) {
	echo "YES".PHP_EOL;
}
else {
	echo "NO".PHP_EOL;
}
0