結果
問題 | No.218 経験値1.5倍 |
ユーザー |
![]() |
提出日時 | 2015-07-03 11:12:39 |
言語 | Perl (5.40.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 246 bytes |
コンパイル時間 | 222 ms |
コンパイル使用メモリ | 5,760 KB |
実行使用メモリ | 5,888 KB |
最終ジャッジ日時 | 2024-07-07 22:44:03 |
合計ジャッジ時間 | 1,146 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 25 WA * 6 |
コンパイルメッセージ
Main.pl syntax OK
ソースコード
use strict; use warnings; my $a = <>; my $b = <>; my $c = <>; my $normal = ($a / $b) * 2/3; my $count = $a / $c; if($count != int $count) { $count = int ($count + 1); } if($count <= $normal) { print "YES\n"; } else { print "NO\n"; } exit;