結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 23 ms
23,516 KB
testcase_01 AC 25 ms
23,388 KB
testcase_02 AC 23 ms
23,496 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 23 ms
21,816 KB
testcase_07 AC 23 ms
25,556 KB
testcase_08 AC 23 ms
23,632 KB
testcase_09 AC 24 ms
23,516 KB
testcase_10 AC 24 ms
23,500 KB
testcase_11 AC 61 ms
25,672 KB
testcase_12 AC 132 ms
23,520 KB
testcase_13 AC 134 ms
23,388 KB
testcase_14 AC 24 ms
23,760 KB
testcase_15 AC 23 ms
23,392 KB
testcase_16 AC 23 ms
25,672 KB
testcase_17 AC 23 ms
25,672 KB
testcase_18 AC 22 ms
23,600 KB
testcase_19 AC 23 ms
23,744 KB
testcase_20 AC 25 ms
25,672 KB
testcase_21 AC 23 ms
25,816 KB
testcase_22 AC 23 ms
23,988 KB
testcase_23 AC 24 ms
23,732 KB
testcase_24 AC 31 ms
25,672 KB
testcase_25 AC 23 ms
23,516 KB
testcase_26 AC 110 ms
24,032 KB
testcase_27 AC 119 ms
23,392 KB
testcase_28 AC 104 ms
23,392 KB
testcase_29 AC 129 ms
25,684 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