結果

問題 No.1665 quotient replace
ユーザー kakel-sankakel-san
提出日時 2024-01-05 00:07:57
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 472 ms / 3,000 ms
コード長 1,716 bytes
コンパイル時間 8,048 ms
コンパイル使用メモリ 165,392 KB
実行使用メモリ 183,740 KB
最終ジャッジ日時 2024-09-27 18:54:19
合計ジャッジ時間 16,694 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
30,848 KB
testcase_01 AC 53 ms
30,592 KB
testcase_02 AC 58 ms
30,848 KB
testcase_03 AC 67 ms
35,028 KB
testcase_04 AC 65 ms
35,036 KB
testcase_05 AC 64 ms
35,100 KB
testcase_06 AC 66 ms
36,336 KB
testcase_07 AC 60 ms
35,096 KB
testcase_08 AC 60 ms
35,676 KB
testcase_09 AC 83 ms
41,676 KB
testcase_10 AC 222 ms
100,716 KB
testcase_11 AC 380 ms
151,820 KB
testcase_12 AC 105 ms
53,020 KB
testcase_13 AC 463 ms
171,540 KB
testcase_14 AC 451 ms
168,596 KB
testcase_15 AC 446 ms
168,728 KB
testcase_16 AC 472 ms
170,368 KB
testcase_17 AC 461 ms
170,496 KB
testcase_18 AC 57 ms
33,152 KB
testcase_19 AC 57 ms
32,128 KB
testcase_20 AC 59 ms
33,536 KB
testcase_21 AC 59 ms
33,536 KB
testcase_22 AC 56 ms
32,512 KB
testcase_23 AC 58 ms
34,048 KB
testcase_24 AC 56 ms
33,024 KB
testcase_25 AC 57 ms
32,640 KB
testcase_26 AC 66 ms
35,200 KB
testcase_27 AC 62 ms
36,224 KB
testcase_28 AC 78 ms
41,728 KB
testcase_29 AC 85 ms
48,256 KB
testcase_30 AC 217 ms
119,808 KB
testcase_31 AC 289 ms
152,704 KB
testcase_32 AC 362 ms
144,000 KB
testcase_33 AC 174 ms
77,568 KB
testcase_34 AC 321 ms
128,256 KB
testcase_35 AC 297 ms
124,404 KB
testcase_36 AC 303 ms
127,672 KB
testcase_37 AC 302 ms
116,116 KB
testcase_38 AC 322 ms
137,564 KB
testcase_39 AC 248 ms
117,788 KB
testcase_40 AC 252 ms
117,680 KB
testcase_41 AC 248 ms
117,556 KB
testcase_42 AC 52 ms
30,720 KB
testcase_43 AC 52 ms
183,740 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 static System.Console;
using System.Linq;
using System.Collections.Generic;

class Program
{
    static int NN => int.Parse(ReadLine());
    static int[] NList => ReadLine().Split().Select(int.Parse).ToArray();
    static int[][] NArr(long n) => Enumerable.Repeat(0, (int)n).Select(_ => NList).ToArray();
    public static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var n = NN;
        var a = NList;
        var mlist = GetMinPDivList(a.Max());
        var ans = 0;
        foreach (var ai in a)
        {
            if (ai > 1) ans ^= PDiv(ai, mlist).Count;
        }
        WriteLine(ans == 0 ? "black" : "white");
    }
    static int[] GetMinPDivList(int max)
    {
        var minPDivList = new int[max + 1];
        for (var i = 0; i <= max; ++i) minPDivList[i] = i;

        for (var i = 2; i * i <= max; ++i) if (minPDivList[i] == i)
        {
            for (var j = i * i; j <= max; j += i) if (minPDivList[j] == j)
            {
                minPDivList[j] = i;
            }
        }
        return minPDivList;
    }
    static int GetMinPDiv(int n, int min)
    {
        var p = min;
        while ((long)p * p <= n)
        {
            if (n % p == 0) return p;
            ++p;
        }
        return n;
    }
    static List<int> PDiv(int n, int[] minPDivList)
    {
        var p = minPDivList[n];
        if (n == p)
        {
            var dic = new List<int>();
            dic.Add(p);
            return dic;
        }
        else
        {
            var dic = PDiv(n / p, minPDivList);
            dic.Add(p);
            return dic;
        }
    }
}
0