結果

問題 No.2379 Burnside's Theorem
ユーザー InTheBloomInTheBloom
提出日時 2023-07-14 21:23:05
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 11 ms / 2,000 ms
コード長 1,402 bytes
コンパイル時間 5,232 ms
コンパイル使用メモリ 157,604 KB
実行使用メモリ 4,480 KB
最終ジャッジ日時 2023-10-14 11:18:10
合計ジャッジ時間 6,253 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,352 KB
testcase_01 AC 1 ms
4,348 KB
testcase_02 AC 1 ms
4,352 KB
testcase_03 AC 1 ms
4,348 KB
testcase_04 AC 1 ms
4,352 KB
testcase_05 AC 2 ms
4,352 KB
testcase_06 AC 1 ms
4,352 KB
testcase_07 AC 2 ms
4,348 KB
testcase_08 AC 1 ms
4,348 KB
testcase_09 AC 1 ms
4,352 KB
testcase_10 AC 2 ms
4,348 KB
testcase_11 AC 2 ms
4,480 KB
testcase_12 AC 2 ms
4,348 KB
testcase_13 AC 7 ms
4,352 KB
testcase_14 AC 9 ms
4,348 KB
testcase_15 AC 11 ms
4,348 KB
testcase_16 AC 2 ms
4,352 KB
testcase_17 AC 2 ms
4,352 KB
testcase_18 AC 3 ms
4,356 KB
testcase_19 AC 2 ms
4,348 KB
testcase_20 AC 1 ms
4,356 KB
testcase_21 AC 2 ms
4,352 KB
testcase_22 AC 1 ms
4,352 KB
testcase_23 AC 2 ms
4,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std;

void main () {
    long N = readln.chomp.to!long;
    solve(N);
}

void solve (long N) {
    auto fac = Factors(N);
    if (fac.factor.length <= 3) {
        writeln("Yes");
    } else {
        writeln("No");
    }
}

struct Factors {
    long target;
    long[] factor;
    long[] pow;
    bool is_prime () {
        if (target <= 0) {
            return false;
        }
        if (factor.length == 2 && pow[1] == 1) {
            return true;
        }
        return false;
    }
    long[] combine_factor () {
        if (target <= 0) {
            return [];
        }
        long[] ret;
        foreach (i, x; pow) {
            foreach (k; 0..x) {
                ret ~= factor[i];
            }
        }
        return ret;
    }

    this (long target_) {
        { // check input
            assert(0 < target_);
        }
        target = target_;
        factor = [];
        pow = [];

        pow ~= 1;
        factor ~= 1;

        foreach (i; 2..target_) {
            if (target_ < i*i) {
                break;
            }
            if (target_ % i == 0) {
                factor ~= i;
                pow ~= 0;
                while (target_ % i == 0) {
                    target_ /= i;
                    pow[$-1]++;
                }
            }
        }
        if (target_ != 1) {
            factor ~= target_;
            pow ~= 1;
        }
    }
}
0