結果

問題 No.2 素因数ゲーム
ユーザー mban
提出日時 2016-10-31 13:30:07
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 1,028 bytes
コンパイル時間 982 ms
コンパイル使用メモリ 110,384 KB
実行使用メモリ 25,836 KB
最終ジャッジ日時 2024-11-25 00:03:31
合計ジャッジ時間 3,788 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 13 WA * 18
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

class Magatro
{
    static int N = int.Parse(Console.ReadLine());
    static List<int> Prime = new List<int>();
    static void Main()
    {
        soinnsuubunkai();
        int ans = 0;
        for(int i = 0; i < Prime.Count; i++)
        {
            ans ^= Prime[i];
        }
        if (ans == 0)
        {
            Console.WriteLine("Bob");
        }
        else
        {
            Console.WriteLine("Alice");
        }
    }
   static void soinnsuubunkai()
    {
        int q = N;
        for(int i = 2; i < q; i++)
        {
            if (q % i == 0)
            {
                int cnt = 0;
                while (true)
                {
                    if (q % i != 0)
                    {
                        break;
                    }
                    q /= i;
                    cnt++;
                }
                Prime.Add(cnt);
            }
        }
    }
}


0