結果

問題 No.2 素因数ゲーム
ユーザー mbanmban
提出日時 2016-10-31 13:30:07
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 1,028 bytes
コンパイル時間 2,211 ms
コンパイル使用メモリ 104,064 KB
実行使用メモリ 17,792 KB
最終ジャッジ日時 2024-05-03 20:06:56
合計ジャッジ時間 4,824 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 22 ms
17,536 KB
testcase_01 WA -
testcase_02 AC 23 ms
17,664 KB
testcase_03 AC 22 ms
17,536 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 24 ms
17,664 KB
testcase_08 WA -
testcase_09 AC 23 ms
17,664 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 22 ms
17,664 KB
testcase_13 AC 22 ms
17,664 KB
testcase_14 AC 23 ms
17,408 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 24 ms
17,664 KB
testcase_18 AC 23 ms
17,536 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 23 ms
17,536 KB
testcase_27 AC 22 ms
17,536 KB
testcase_28 WA -
testcase_29 AC 23 ms
17,280 KB
testcase_30 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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