結果

問題 No.36 素数が嫌い!
ユーザー hayashihayashi
提出日時 2019-10-17 11:11:43
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 120 ms / 5,000 ms
コード長 672 bytes
コンパイル時間 1,020 ms
コンパイル使用メモリ 112,152 KB
実行使用メモリ 25,936 KB
最終ジャッジ日時 2024-06-24 00:13:37
合計ジャッジ時間 3,509 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
23,516 KB
testcase_01 AC 28 ms
23,728 KB
testcase_02 AC 27 ms
25,560 KB
testcase_03 AC 26 ms
23,980 KB
testcase_04 AC 27 ms
23,392 KB
testcase_05 AC 26 ms
25,428 KB
testcase_06 AC 26 ms
23,984 KB
testcase_07 AC 27 ms
23,628 KB
testcase_08 AC 26 ms
23,648 KB
testcase_09 AC 27 ms
23,520 KB
testcase_10 AC 27 ms
21,684 KB
testcase_11 AC 58 ms
25,664 KB
testcase_12 AC 119 ms
23,512 KB
testcase_13 AC 120 ms
25,796 KB
testcase_14 AC 27 ms
23,760 KB
testcase_15 AC 27 ms
21,816 KB
testcase_16 AC 27 ms
23,392 KB
testcase_17 AC 26 ms
23,524 KB
testcase_18 AC 27 ms
23,264 KB
testcase_19 AC 30 ms
25,936 KB
testcase_20 AC 30 ms
25,668 KB
testcase_21 AC 39 ms
25,676 KB
testcase_22 AC 27 ms
21,812 KB
testcase_23 AC 28 ms
23,640 KB
testcase_24 AC 41 ms
25,668 KB
testcase_25 AC 44 ms
25,560 KB
testcase_26 AC 60 ms
23,900 KB
testcase_27 AC 30 ms
25,800 KB
testcase_28 AC 61 ms
23,780 KB
testcase_29 AC 28 ms
23,616 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
namespace ConsoleApp
{
    class Program
    {
        static void Main(string[] args)
        {
            ulong N = ulong.Parse(Console.ReadLine());
            ulong count = 0;
            for (ulong i = 2; i * i < N; i++)
            {
                while(N % i == 0)
                {
                    count++;
                    N /= i;
                }
            }
            if(N != 1)
            {
                count++;
            }
            if (count > 2)
            {
                Console.WriteLine("YES");
            }
            else
            {
                Console.WriteLine("NO");
            }
        }
    }
}
0