結果

問題 No.1672 404 Not Found
ユーザー bluemeganebluemegane
提出日時 2021-09-11 07:16:53
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 57 ms / 1,000 ms
コード長 190 bytes
コンパイル時間 994 ms
コンパイル使用メモリ 63,144 KB
実行使用メモリ 22,800 KB
最終ジャッジ日時 2023-09-04 09:53:30
合計ジャッジ時間 3,067 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
20,704 KB
testcase_01 AC 55 ms
20,780 KB
testcase_02 AC 55 ms
20,768 KB
testcase_03 AC 55 ms
20,592 KB
testcase_04 AC 55 ms
22,780 KB
testcase_05 AC 55 ms
20,692 KB
testcase_06 AC 55 ms
22,672 KB
testcase_07 AC 55 ms
20,868 KB
testcase_08 AC 55 ms
20,680 KB
testcase_09 AC 55 ms
22,800 KB
testcase_10 AC 55 ms
20,756 KB
testcase_11 AC 57 ms
22,732 KB
testcase_12 AC 55 ms
20,784 KB
testcase_13 AC 55 ms
20,748 KB
testcase_14 AC 56 ms
22,724 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

using System;

public class Hello
{
    static void Main()
    {
        var n = int.Parse(Console.ReadLine().Trim());
        Console.WriteLine(n >= 400 && n < 600 ? "Yes" : "No");
    }
}
0