結果

問題 No.36 素数が嫌い!
ユーザー うわばみうわばみ
提出日時 2020-04-29 21:43:17
言語 C#(csc)
(csc 3.9.0)
結果
RE  
実行時間 -
コード長 687 bytes
コンパイル時間 3,751 ms
コンパイル使用メモリ 104,192 KB
実行使用メモリ 25,808 KB
最終ジャッジ日時 2024-05-07 09:36:59
合計ジャッジ時間 2,686 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 AC 24 ms
23,852 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 24 ms
21,816 KB
testcase_08 AC 24 ms
23,768 KB
testcase_09 AC 24 ms
24,004 KB
testcase_10 AC 24 ms
23,752 KB
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 AC 25 ms
25,664 KB
testcase_16 AC 24 ms
25,664 KB
testcase_17 AC 24 ms
23,628 KB
testcase_18 AC 25 ms
25,808 KB
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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.Text;
using System.Collections.Generic;
using System.Linq;

class Program
{
    static void Main()
    {
        long n = int.Parse(Console.ReadLine());
        if(!IsPrime(n))
        {
            Console.WriteLine($"YES");
        }
        else
        {
            Console.WriteLine($"NO");
        }
    }

    public static bool IsPrime(long number)
    {
        if(number <= 2)
            return true;
        else if(number % 2 == 0)
            return false;

        for(long i = 3; i * i <= number; i += 2)
        {
            if(number % i == 0)
            {
                return false;
            }
        }
        return true;
    }
}
0