結果

問題 No.36 素数が嫌い!
ユーザー bluemeganebluemegane
提出日時 2020-09-07 14:24:50
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 3,077 ms / 5,000 ms
コード長 1,238 bytes
コンパイル時間 983 ms
コンパイル使用メモリ 113,192 KB
実行使用メモリ 58,240 KB
最終ジャッジ日時 2024-05-06 23:46:38
合計ジャッジ時間 36,494 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,133 ms
36,864 KB
testcase_01 AC 2,204 ms
49,536 KB
testcase_02 AC 23 ms
17,792 KB
testcase_03 AC 26 ms
18,816 KB
testcase_04 AC 27 ms
17,408 KB
testcase_05 AC 33 ms
18,800 KB
testcase_06 AC 29 ms
18,548 KB
testcase_07 AC 29 ms
18,936 KB
testcase_08 AC 28 ms
18,688 KB
testcase_09 AC 28 ms
18,672 KB
testcase_10 AC 28 ms
18,428 KB
testcase_11 AC 721 ms
31,232 KB
testcase_12 AC 3,077 ms
58,112 KB
testcase_13 AC 3,036 ms
58,240 KB
testcase_14 AC 1,632 ms
43,136 KB
testcase_15 AC 27 ms
18,688 KB
testcase_16 AC 22 ms
17,664 KB
testcase_17 AC 23 ms
17,536 KB
testcase_18 AC 27 ms
18,816 KB
testcase_19 AC 892 ms
33,792 KB
testcase_20 AC 3,030 ms
58,112 KB
testcase_21 AC 2,136 ms
48,640 KB
testcase_22 AC 2,222 ms
49,664 KB
testcase_23 AC 1,141 ms
37,120 KB
testcase_24 AC 1,311 ms
39,168 KB
testcase_25 AC 1,274 ms
39,040 KB
testcase_26 AC 1,592 ms
42,496 KB
testcase_27 AC 2,496 ms
52,480 KB
testcase_28 AC 1,553 ms
41,984 KB
testcase_29 AC 2,914 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