結果

問題 No.218 経験値1.5倍
ユーザー kmtrc130
提出日時 2019-03-18 17:23:45
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 527 bytes
コンパイル時間 1,604 ms
コンパイル使用メモリ 111,320 KB
実行使用メモリ 25,936 KB
最終ジャッジ日時 2024-07-18 12:08:09
合計ジャッジ時間 3,819 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 20 WA * 11
権限があれば一括ダウンロードができます
コンパイルメッセージ
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;

class Program
{
    public void Solve()
    {
        int a = int.Parse(Console.ReadLine());
        int b = int.Parse(Console.ReadLine());
        int c = int.Parse(Console.ReadLine());

        double maxB = Math.Ceiling((double)a / b);
        double maxC = Math.Ceiling((double)a / c);

        Console.WriteLine(maxB * 2 / 3 == maxC ? "YES" : "NO");
    }

    static void Main()
    {
        var solver = new Program();
        solver.Solve();
    }
}
0