結果

問題 No.218 経験値1.5倍
ユーザー _matumo__matumo_
提出日時 2018-08-20 10:47:23
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 23 ms / 2,000 ms
コード長 532 bytes
コンパイル時間 1,488 ms
コンパイル使用メモリ 110,932 KB
実行使用メモリ 27,960 KB
最終ジャッジ日時 2024-05-03 14:37:43
合計ジャッジ時間 2,438 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 20 ms
25,676 KB
testcase_01 AC 21 ms
25,736 KB
testcase_02 AC 20 ms
23,640 KB
testcase_03 AC 21 ms
23,988 KB
testcase_04 AC 21 ms
23,896 KB
testcase_05 AC 20 ms
25,812 KB
testcase_06 AC 19 ms
23,856 KB
testcase_07 AC 23 ms
25,820 KB
testcase_08 AC 23 ms
23,856 KB
testcase_09 AC 23 ms
25,552 KB
testcase_10 AC 23 ms
25,660 KB
testcase_11 AC 22 ms
23,384 KB
testcase_12 AC 21 ms
25,920 KB
testcase_13 AC 20 ms
23,632 KB
testcase_14 AC 21 ms
27,960 KB
testcase_15 AC 21 ms
23,640 KB
testcase_16 AC 20 ms
25,936 KB
testcase_17 AC 21 ms
25,928 KB
testcase_18 AC 21 ms
25,804 KB
testcase_19 AC 23 ms
25,732 KB
testcase_20 AC 22 ms
23,776 KB
testcase_21 AC 20 ms
21,428 KB
testcase_22 AC 19 ms
21,424 KB
testcase_23 AC 20 ms
23,624 KB
testcase_24 AC 21 ms
26,052 KB
testcase_25 AC 20 ms
25,924 KB
testcase_26 AC 20 ms
25,924 KB
testcase_27 AC 21 ms
25,800 KB
testcase_28 AC 21 ms
23,772 KB
testcase_29 AC 20 ms
23,748 KB
testcase_30 AC 21 ms
23,748 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
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;

namespace YukiCoder
{
    class Program
    {
        static void Main(string[] args)
        {
            int na = int.Parse(Console.ReadLine());
            int nb = int.Parse(Console.ReadLine());
            int nc = int.Parse(Console.ReadLine());
            int nx = (na - 1) / nb + 1;
            int ny = (na - 1) / nc + 1;
            Console.WriteLine(nx * 2 >= ny * 3 ? "YES" : "NO");
            Console.ReadLine();
        }
    }
}
0