結果

問題 No.2379 Burnside's Theorem
ユーザー 抹茶アイス抹茶アイス
提出日時 2023-07-21 16:04:18
言語 C#
(.NET 8.0.203)
結果
WA  
実行時間 -
コード長 1,366 bytes
コンパイル時間 7,702 ms
コンパイル使用メモリ 167,284 KB
実行使用メモリ 186,152 KB
最終ジャッジ日時 2024-09-21 17:56:47
合計ジャッジ時間 10,021 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
29,440 KB
testcase_01 AC 54 ms
29,440 KB
testcase_02 AC 54 ms
29,184 KB
testcase_03 AC 56 ms
30,336 KB
testcase_04 WA -
testcase_05 AC 54 ms
30,080 KB
testcase_06 AC 54 ms
29,824 KB
testcase_07 AC 54 ms
29,824 KB
testcase_08 WA -
testcase_09 AC 53 ms
29,820 KB
testcase_10 WA -
testcase_11 AC 54 ms
29,696 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 57 ms
30,080 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 56 ms
30,208 KB
testcase_20 AC 57 ms
30,720 KB
testcase_21 AC 59 ms
31,580 KB
testcase_22 WA -
testcase_23 AC 59 ms
186,152 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (95 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>();
        var c = false;
        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){
                c = true;
                break;
            }
        }
        if(c&&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