結果

問題 No.36 素数が嫌い!
ユーザー hayashihayashi
提出日時 2019-10-17 10:22:20
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 397 bytes
コンパイル時間 1,021 ms
コンパイル使用メモリ 113,752 KB
実行使用メモリ 27,836 KB
最終ジャッジ日時 2024-06-23 23:08:44
合計ジャッジ時間 2,990 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
25,692 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 24 ms
25,416 KB
testcase_07 AC 23 ms
23,384 KB
testcase_08 AC 24 ms
25,556 KB
testcase_09 AC 24 ms
23,520 KB
testcase_10 AC 24 ms
23,256 KB
testcase_11 AC 25 ms
23,392 KB
testcase_12 AC 24 ms
23,516 KB
testcase_13 AC 24 ms
23,472 KB
testcase_14 WA -
testcase_15 AC 24 ms
23,388 KB
testcase_16 AC 23 ms
23,648 KB
testcase_17 AC 24 ms
23,984 KB
testcase_18 AC 23 ms
23,516 KB
testcase_19 AC 24 ms
23,652 KB
testcase_20 AC 23 ms
23,520 KB
testcase_21 AC 24 ms
25,284 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 23 ms
21,556 KB
testcase_26 WA -
testcase_27 AC 24 ms
23,728 KB
testcase_28 WA -
testcase_29 AC 24 ms
23,732 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
namespace ConsoleApp
{
    class Program
    {
        static void Main(string[] args)
        {
            ulong N = ulong.Parse(Console.ReadLine());
            if (N == 1 || N == 3 || N == 5 || N % 2 != 0 && N % 3 != 0 && N % 5 != 0)
            {
                Console.WriteLine("NO");
            }
            else
                Console.WriteLine("YES");
        }
    }
}
0