結果

問題 No.36 素数が嫌い!
ユーザー bluemeganebluemegane
提出日時 2020-09-07 14:24:50
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 2,832 ms / 5,000 ms
コード長 1,238 bytes
コンパイル時間 1,012 ms
コンパイル使用メモリ 115,284 KB
実行使用メモリ 66,620 KB
最終ジャッジ日時 2024-11-29 10:45:30
合計ジャッジ時間 32,443 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,006 ms
42,944 KB
testcase_01 AC 2,016 ms
55,564 KB
testcase_02 AC 22 ms
23,648 KB
testcase_03 AC 25 ms
26,836 KB
testcase_04 AC 22 ms
25,912 KB
testcase_05 AC 28 ms
25,024 KB
testcase_06 AC 28 ms
24,888 KB
testcase_07 AC 31 ms
24,768 KB
testcase_08 AC 28 ms
27,084 KB
testcase_09 AC 29 ms
27,148 KB
testcase_10 AC 29 ms
24,972 KB
testcase_11 AC 657 ms
37,336 KB
testcase_12 AC 2,794 ms
66,620 KB
testcase_13 AC 2,832 ms
64,184 KB
testcase_14 AC 1,494 ms
49,112 KB
testcase_15 AC 24 ms
22,968 KB
testcase_16 AC 21 ms
23,728 KB
testcase_17 AC 20 ms
23,896 KB
testcase_18 AC 24 ms
24,884 KB
testcase_19 AC 814 ms
39,984 KB
testcase_20 AC 2,733 ms
58,496 KB
testcase_21 AC 1,934 ms
49,024 KB
testcase_22 AC 2,030 ms
49,792 KB
testcase_23 AC 1,045 ms
36,992 KB
testcase_24 AC 1,188 ms
39,296 KB
testcase_25 AC 1,173 ms
43,216 KB
testcase_26 AC 1,429 ms
46,740 KB
testcase_27 AC 2,239 ms
52,480 KB
testcase_28 AC 1,412 ms
42,240 KB
testcase_29 AC 2,634 ms
56,960 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System.Linq;
using System.Collections.Generic;
using static System.Math;
using System;

public class Hello
{
    static void Main()
    {
        var n = long.Parse(Console.ReadLine().Trim());
        if (n <= 5) { Console.WriteLine("NO"); goto exit; }
        var a = GeneratePrime((int)Sqrt(n));
        getAns(n, a);
    exit:;
    }
    static void getAns(long n, List<int> a)
    {
        var count = 0;
        foreach (var x in a)
        {
            while (true)
            {
                if (n % x == 0)
                {
                    count++;
                    n /= x;
                    if (n == 1) { Console.WriteLine("NO"); return; }
                    if (count >= 2) { Console.WriteLine("YES"); return; }
                }
                else break;
            }
        }
        Console.WriteLine("NO");
    }
    static List<int> GeneratePrime(int m)
    {
        var a = new List<int>();
        int p;
        var sqrtMax = Math.Sqrt(m);
        var s = Enumerable.Range(2, m - 1).ToList();
        do
        {
            p = s.First();
            a.Add(p);
            s.RemoveAll(n => n % p == 0);
        }
        while (p < sqrtMax);
        a.AddRange(s);
        return a;
    }
}
0