結果

問題 No.2379 Burnside's Theorem
ユーザー 抹茶アイス抹茶アイス
提出日時 2023-07-21 15:55:03
言語 C#
(.NET 8.0.203)
結果
WA  
実行時間 -
コード長 1,314 bytes
コンパイル時間 10,698 ms
コンパイル使用メモリ 168,436 KB
実行使用メモリ 187,348 KB
最終ジャッジ日時 2024-09-21 17:48:54
合計ジャッジ時間 13,021 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
29,688 KB
testcase_01 AC 46 ms
29,312 KB
testcase_02 AC 48 ms
29,440 KB
testcase_03 AC 51 ms
30,592 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 49 ms
30,056 KB
testcase_09 WA -
testcase_10 AC 48 ms
29,824 KB
testcase_11 AC 48 ms
29,788 KB
testcase_12 AC 49 ms
30,056 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 47 ms
30,080 KB
testcase_17 AC 49 ms
29,916 KB
testcase_18 AC 68 ms
32,368 KB
testcase_19 AC 50 ms
30,584 KB
testcase_20 AC 50 ms
30,976 KB
testcase_21 AC 54 ms
31,744 KB
testcase_22 WA -
testcase_23 AC 55 ms
187,348 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (93 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

using System;
using System.Collections.Generic;
using System.Linq;
public class Program{
    public static void Main(){
        var n = long.Parse(Console.ReadLine());
        var N = (long)Math.Truncate(Math.Sqrt(n));
        var k = Prime(N);
        var a = new List<int>();
        for(var i=0;i<k.Count;i++){
            if(n%k[i]==0){
                while(n%k[i]==0){
                    n /= k[i];
                }
                a.Add(k[i]);
            }
            if(n==1){
                break;
            }
        }
        if(a.Count<=2&&a.Count!=0){
            Console.WriteLine("Yes");
        }
        else{
            Console.WriteLine("No");
        }
        
    }
    static List<int> Prime(long n)
    {
        var isPrime = new bool[n+1];
        var k = new List<int>();
        for (int i = 2; i <= n; i++)
        {
            isPrime[i] = true;
        }
    
        for (int i = 2; i * i <= n; i++)
        {
            if (isPrime[i])
            {
                for (int j = i * i; j <= n; j += i)
                {
                    isPrime[j] = false;
                }
            }
        }
    
        for (int i = 2; i <= n; i++)
        {
            if (isPrime[i])
            {
                k.Add(i);
            }
        }
        return k;
    }
}
0