結果

問題 No.2379 Burnside's Theorem
ユーザー 抹茶アイス抹茶アイス
提出日時 2023-07-21 15:53:22
言語 C#
(.NET 8.0.203)
結果
WA  
実行時間 -
コード長 1,302 bytes
コンパイル時間 16,381 ms
コンパイル使用メモリ 168,324 KB
実行使用メモリ 188,704 KB
最終ジャッジ日時 2024-09-21 17:46:13
合計ジャッジ時間 18,846 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
29,304 KB
testcase_01 AC 53 ms
29,824 KB
testcase_02 AC 53 ms
29,568 KB
testcase_03 AC 55 ms
30,584 KB
testcase_04 AC 54 ms
29,808 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 54 ms
29,952 KB
testcase_09 WA -
testcase_10 AC 54 ms
29,688 KB
testcase_11 AC 53 ms
29,688 KB
testcase_12 AC 53 ms
29,824 KB
testcase_13 AC 67 ms
31,232 KB
testcase_14 AC 69 ms
31,744 KB
testcase_15 AC 71 ms
32,128 KB
testcase_16 AC 54 ms
30,044 KB
testcase_17 AC 53 ms
29,824 KB
testcase_18 AC 73 ms
32,384 KB
testcase_19 AC 55 ms
30,464 KB
testcase_20 AC 57 ms
30,976 KB
testcase_21 AC 59 ms
31,488 KB
testcase_22 AC 53 ms
29,440 KB
testcase_23 AC 60 ms
188,704 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (97 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){
            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