結果

問題 No.36 素数が嫌い!
ユーザー pirorirori_n712pirorirori_n712
提出日時 2018-11-01 09:54:57
言語 C#(csc)
(csc 3.9.0)
結果
TLE  
実行時間 -
コード長 813 bytes
コンパイル時間 2,427 ms
コンパイル使用メモリ 107,672 KB
実行使用メモリ 47,932 KB
最終ジャッジ日時 2024-11-19 14:51:37
合計ジャッジ時間 47,782 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 21 ms
45,880 KB
testcase_01 AC 121 ms
30,560 KB
testcase_02 AC 21 ms
47,860 KB
testcase_03 AC 22 ms
47,932 KB
testcase_04 AC 22 ms
46,080 KB
testcase_05 AC 3,897 ms
25,796 KB
testcase_06 AC 4,726 ms
25,796 KB
testcase_07 AC 22 ms
23,604 KB
testcase_08 AC 22 ms
23,472 KB
testcase_09 AC 23 ms
21,812 KB
testcase_10 AC 21 ms
24,004 KB
testcase_11 AC 56 ms
23,264 KB
testcase_12 AC 127 ms
25,664 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 AC 24 ms
21,740 KB
testcase_16 AC 21 ms
23,908 KB
testcase_17 AC 22 ms
23,860 KB
testcase_18 AC 21 ms
25,668 KB
testcase_19 AC 22 ms
25,688 KB
testcase_20 AC 31 ms
25,540 KB
testcase_21 AC 22 ms
25,792 KB
testcase_22 AC 21 ms
23,648 KB
testcase_23 AC 22 ms
23,520 KB
testcase_24 AC 172 ms
25,784 KB
testcase_25 AC 22 ms
23,776 KB
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;

class No36
{
    static void Main()
    {
        var num = Int64.Parse(Console.ReadLine());
        if (IsPrimeNumber(num))
        {
            Console.WriteLine("NO");
            return;
        }
        var ans = "NO";
        //var s = Math.Sqrt(num) + 1;
        var s = (num + 1) / 2;
        for (long i = 2; i < s; i++)
        {
            if (num % i == 0) { 
                if (!IsPrimeNumber(i))
                {
                    ans = "YES";
                    break;
                }
            }
        }
        Console.WriteLine(ans);
    }
    static bool IsPrimeNumber(long num)
    {
        if (num == 1 || num == 2) return true;
        var s = Math.Sqrt(num) + 1;
        for (long i = 2; i < s; i++) if (num % i == 0) return false;
        return true;
    }
}
0