結果

問題 No.36 素数が嫌い!
ユーザー hogekihogeki
提出日時 2016-11-12 16:26:55
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 669 bytes
コンパイル時間 801 ms
コンパイル使用メモリ 109,392 KB
実行使用メモリ 25,932 KB
最終ジャッジ日時 2024-05-04 10:39:53
合計ジャッジ時間 3,117 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 20 ms
23,648 KB
testcase_01 AC 19 ms
23,516 KB
testcase_02 AC 19 ms
25,924 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 20 ms
23,472 KB
testcase_07 AC 20 ms
23,724 KB
testcase_08 AC 20 ms
23,888 KB
testcase_09 AC 20 ms
25,544 KB
testcase_10 AC 19 ms
25,796 KB
testcase_11 AC 51 ms
23,772 KB
testcase_12 AC 120 ms
21,556 KB
testcase_13 AC 121 ms
25,668 KB
testcase_14 AC 22 ms
25,676 KB
testcase_15 AC 22 ms
23,644 KB
testcase_16 AC 21 ms
25,684 KB
testcase_17 AC 21 ms
23,600 KB
testcase_18 AC 20 ms
23,644 KB
testcase_19 AC 21 ms
23,512 KB
testcase_20 AC 22 ms
23,652 KB
testcase_21 AC 21 ms
25,676 KB
testcase_22 AC 20 ms
23,392 KB
testcase_23 AC 20 ms
23,904 KB
testcase_24 AC 26 ms
25,800 KB
testcase_25 AC 18 ms
23,880 KB
testcase_26 AC 96 ms
23,516 KB
testcase_27 AC 105 ms
23,388 KB
testcase_28 AC 94 ms
23,852 KB
testcase_29 AC 119 ms
23,880 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;

class HatePrime
{
	static public void Main(String[] args)
	{
		long N = long.Parse(Console.ReadLine());
		long sqn =(long)Math.Sqrt((double)N);
		for(long i=2; i<=sqn; i++)
		{
			if(N % i == 0)
			{
				if(!isPrime(i))
				{
					Console.WriteLine("YES");
					return;
				}
				else if(!isPrime(N/i))
				{
					Console.WriteLine("YES");
					return;
				}
			}
		}
		Console.WriteLine("NO");
	}

	static bool isPrime(long n)
	{
		if(n == 2)
			return false;
		if(n < 2 || n % 2 == 0)
			return false;

		long i = 3;
		long sqn = (long)Math.Sqrt((double)n);
		while(i <= sqn) 
		{
			if(n % i == 0)
				return false;
			i += 2;
		}
		return true;
	}
}
0