結果

問題 No.36 素数が嫌い!
ユーザー bluemeganebluemegane
提出日時 2020-09-07 13:44:33
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 1,148 bytes
コンパイル時間 966 ms
コンパイル使用メモリ 110,272 KB
実行使用メモリ 68,460 KB
最終ジャッジ日時 2024-05-06 23:39:25
合計ジャッジ時間 34,167 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 2,128 ms
59,392 KB
testcase_02 RE -
testcase_03 AC 26 ms
24,876 KB
testcase_04 AC 25 ms
24,920 KB
testcase_05 AC 28 ms
24,992 KB
testcase_06 AC 27 ms
25,024 KB
testcase_07 AC 27 ms
26,676 KB
testcase_08 AC 25 ms
24,668 KB
testcase_09 AC 27 ms
24,888 KB
testcase_10 WA -
testcase_11 AC 677 ms
37,336 KB
testcase_12 AC 2,931 ms
66,340 KB
testcase_13 AC 2,867 ms
66,240 KB
testcase_14 AC 1,554 ms
53,148 KB
testcase_15 AC 26 ms
22,704 KB
testcase_16 AC 27 ms
24,756 KB
testcase_17 RE -
testcase_18 AC 26 ms
24,548 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 1,266 ms
49,328 KB
testcase_25 WA -
testcase_26 AC 1,533 ms
50,444 KB
testcase_27 AC 2,379 ms
60,672 KB
testcase_28 AC 1,502 ms
50,104 KB
testcase_29 AC 2,809 ms
66,940 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());
        var a = GeneratePrime((int)Sqrt(n));
        if (n <= 5) Console.WriteLine("NO");
        else getAns(n, a);
    }
    static void getAns(long n, List<int> a)
    {
        var count = 0;
        foreach (var x in a)
        {
            while (true)
            {
                if (n % x == 0)
                {
                    count++;
                    if (count >= 3) { Console.WriteLine("YES"); return; }
                    n /= x;
                }
                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