結果

問題 No.2 素因数ゲーム
ユーザー mbanmban
提出日時 2016-10-31 13:33:08
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 1,044 bytes
コンパイル時間 1,052 ms
コンパイル使用メモリ 110,824 KB
実行使用メモリ 28,004 KB
最終ジャッジ日時 2024-05-03 20:07:01
合計ジャッジ時間 3,646 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
23,916 KB
testcase_01 AC 23 ms
23,856 KB
testcase_02 AC 24 ms
23,660 KB
testcase_03 AC 25 ms
23,920 KB
testcase_04 WA -
testcase_05 AC 25 ms
25,456 KB
testcase_06 WA -
testcase_07 AC 24 ms
25,832 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 25 ms
23,784 KB
testcase_13 AC 24 ms
23,652 KB
testcase_14 AC 25 ms
23,660 KB
testcase_15 WA -
testcase_16 AC 25 ms
25,708 KB
testcase_17 AC 26 ms
23,528 KB
testcase_18 AC 25 ms
23,600 KB
testcase_19 AC 264 ms
23,536 KB
testcase_20 WA -
testcase_21 AC 458 ms
23,856 KB
testcase_22 AC 35 ms
23,276 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 35 ms
23,852 KB
testcase_26 AC 25 ms
23,796 KB
testcase_27 AC 25 ms
23,532 KB
testcase_28 AC 25 ms
23,792 KB
testcase_29 AC 25 ms
23,788 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&&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