結果

問題 No.36 素数が嫌い!
ユーザー bluemeganebluemegane
提出日時 2020-09-07 14:20:34
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 1,234 bytes
コンパイル時間 804 ms
コンパイル使用メモリ 115,908 KB
実行使用メモリ 70,100 KB
最終ジャッジ日時 2024-05-06 23:45:39
合計ジャッジ時間 34,504 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,079 ms
44,552 KB
testcase_01 AC 2,106 ms
59,652 KB
testcase_02 AC 22 ms
23,748 KB
testcase_03 AC 25 ms
24,500 KB
testcase_04 AC 21 ms
23,896 KB
testcase_05 AC 27 ms
24,740 KB
testcase_06 AC 30 ms
25,156 KB
testcase_07 AC 29 ms
24,880 KB
testcase_08 AC 26 ms
24,880 KB
testcase_09 AC 30 ms
24,852 KB
testcase_10 AC 28 ms
24,880 KB
testcase_11 AC 695 ms
37,136 KB
testcase_12 AC 2,931 ms
68,512 KB
testcase_13 WA -
testcase_14 AC 1,589 ms
51,116 KB
testcase_15 AC 27 ms
26,836 KB
testcase_16 AC 22 ms
25,560 KB
testcase_17 AC 22 ms
25,564 KB
testcase_18 AC 27 ms
27,064 KB
testcase_19 AC 857 ms
41,760 KB
testcase_20 AC 2,926 ms
64,064 KB
testcase_21 AC 2,078 ms
56,900 KB
testcase_22 AC 2,175 ms
59,964 KB
testcase_23 AC 1,122 ms
47,176 KB
testcase_24 AC 1,271 ms
49,588 KB
testcase_25 AC 1,232 ms
48,996 KB
testcase_26 AC 1,539 ms
52,616 KB
testcase_27 AC 2,404 ms
62,584 KB
testcase_28 AC 1,513 ms
54,092 KB
testcase_29 AC 2,841 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());
        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;
                    //Console.WriteLine("x = {0} nn = {1}",x,n);
                    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