結果

問題 No.36 素数が嫌い!
ユーザー bluemeganebluemegane
提出日時 2020-09-07 13:13:56
言語 C#(csc)
(csc 3.9.0)
結果
TLE  
実行時間 -
コード長 870 bytes
コンパイル時間 2,265 ms
コンパイル使用メモリ 103,424 KB
実行使用メモリ 33,920 KB
最終ジャッジ日時 2024-05-06 23:34:19
合計ジャッジ時間 7,851 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 20 ms
33,920 KB
testcase_01 AC 20 ms
17,536 KB
testcase_02 AC 19 ms
17,280 KB
testcase_03 AC 18 ms
17,536 KB
testcase_04 AC 19 ms
17,536 KB
testcase_05 AC 19 ms
17,408 KB
testcase_06 AC 19 ms
17,664 KB
testcase_07 AC 18 ms
17,280 KB
testcase_08 AC 18 ms
17,280 KB
testcase_09 AC 18 ms
17,280 KB
testcase_10 AC 19 ms
17,536 KB
testcase_11 TLE -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using static System.Math;
using System;

public class Hello
{
    static void Main()
    {
        var n = long.Parse(Console.ReadLine().Trim());
        if (n == 1) Console.WriteLine("NO");
        else getAns(n);

    }
    static void getAns(long n)
    {
        for (int i = 2; i * i <= n; i++)
        {
            if (n % i == 0)
            {
                if (!IsPrime(i)) { Console.WriteLine("YES"); return; }
                if (!IsPrime((int)(n / i))) { Console.WriteLine("YES"); return; }
            }
        }
        Console.WriteLine("NO");
    }
    static bool IsPrime(int n)
    {
        if (n < 2) return false;
        else if (n == 2) return true;
        else if (n % 2 == 0) return false;
        double sqrtNum = Sqrt(n);
        for (int i = 3; i <= sqrtNum; i += 2)
            if (n % i == 0) return false;
        return true;
    }
}
0