結果
| 問題 |
No.218 経験値1.5倍
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2016-07-25 20:19:37 |
| 言語 | C#(csc) (csc 3.9.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 451 bytes |
| コンパイル時間 | 1,138 ms |
| コンパイル使用メモリ | 109,348 KB |
| 実行使用メモリ | 28,096 KB |
| 最終ジャッジ日時 | 2024-11-06 16:51:06 |
| 合計ジャッジ時間 | 2,699 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 21 WA * 10 |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System;
public class Test
{
public static void Main()
{
double a = double.Parse(Console.ReadLine());
double b = double.Parse(Console.ReadLine());
double c = double.Parse(Console.ReadLine());
double cntNormal = Math.Ceiling( a / b );
double cntCampaing = Math.Ceiling( a / c );
double Hoge = Math.Ceiling( cntNormal * 0.6 );
Console.WriteLine(Hoge >= cntCampaing ? "YES" : "NO");
}
}