結果

問題 No.1665 quotient replace
ユーザー kakel-sankakel-san
提出日時 2024-01-05 00:06:28
言語 C#
(.NET 8.0.203)
結果
WA  
実行時間 -
コード長 1,716 bytes
コンパイル時間 8,150 ms
コンパイル使用メモリ 166,916 KB
実行使用メモリ 186,708 KB
最終ジャッジ日時 2024-09-27 18:53:59
合計ジャッジ時間 20,349 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
30,976 KB
testcase_01 AC 59 ms
30,720 KB
testcase_02 AC 58 ms
30,700 KB
testcase_03 AC 97 ms
34,896 KB
testcase_04 AC 67 ms
35,036 KB
testcase_05 AC 66 ms
35,232 KB
testcase_06 AC 71 ms
36,328 KB
testcase_07 AC 68 ms
35,348 KB
testcase_08 AC 69 ms
35,792 KB
testcase_09 AC 92 ms
42,064 KB
testcase_10 AC 241 ms
100,720 KB
testcase_11 AC 414 ms
152,068 KB
testcase_12 AC 123 ms
52,892 KB
testcase_13 AC 506 ms
171,408 KB
testcase_14 AC 515 ms
171,280 KB
testcase_15 AC 517 ms
168,836 KB
testcase_16 AC 535 ms
171,276 KB
testcase_17 AC 530 ms
171,400 KB
testcase_18 AC 63 ms
33,268 KB
testcase_19 AC 62 ms
32,256 KB
testcase_20 AC 64 ms
33,388 KB
testcase_21 AC 64 ms
33,388 KB
testcase_22 AC 63 ms
32,640 KB
testcase_23 AC 66 ms
34,040 KB
testcase_24 AC 62 ms
33,016 KB
testcase_25 AC 64 ms
32,512 KB
testcase_26 AC 73 ms
35,308 KB
testcase_27 AC 70 ms
36,136 KB
testcase_28 AC 90 ms
41,600 KB
testcase_29 AC 106 ms
48,388 KB
testcase_30 AC 250 ms
120,048 KB
testcase_31 AC 325 ms
155,572 KB
testcase_32 WA -
testcase_33 AC 200 ms
77,420 KB
testcase_34 AC 362 ms
128,380 KB
testcase_35 AC 341 ms
127,088 KB
testcase_36 WA -
testcase_37 AC 331 ms
120,096 KB
testcase_38 AC 362 ms
137,432 KB
testcase_39 AC 307 ms
117,680 KB
testcase_40 AC 298 ms
117,560 KB
testcase_41 AC 313 ms
114,984 KB
testcase_42 WA -
testcase_43 AC 60 ms
186,708 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (100 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 > 0) 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