結果

問題 No.218 経験値1.5倍
ユーザー No
提出日時 2015-06-10 19:51:11
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 472 bytes
コンパイル時間 692 ms
コンパイル使用メモリ 109,452 KB
実行使用メモリ 26,072 KB
最終ジャッジ日時 2024-07-06 15:24:16
合計ジャッジ時間 2,225 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
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.

ソースコード

diff #

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace foryuki
{
    class Program
    {
        static void Main(string[] args)
        {
            double a = int.Parse(Console.ReadLine());
            double b = int.Parse(Console.ReadLine());
            double c = int.Parse(Console.ReadLine());

            Console.WriteLine(((a / b) * (2d / 3d) >= (a / c)) ? "YES" : "NO");
        }
    }
}
0