結果

問題 No.2 素因数ゲーム
ユーザー mban
提出日時 2016-10-31 13:33:08
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 1,044 bytes
コンパイル時間 1,217 ms
コンパイル使用メモリ 111,020 KB
実行使用メモリ 25,968 KB
最終ジャッジ日時 2024-11-25 00:03:36
合計ジャッジ時間 3,812 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 20 WA * 11
権限があれば一括ダウンロードができます
コンパイルメッセージ
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&&Prime.Count==3)
        {
            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