結果
| 問題 | No.2 素因数ゲーム |
| コンテスト | |
| ユーザー |
mban
|
| 提出日時 | 2016-10-31 13:43:09 |
| 言語 | C#(csc) (csc 3.9.0) |
| 結果 |
AC
|
| 実行時間 | 512 ms / 5,000 ms |
| コード長 | 1,080 bytes |
| コンパイル時間 | 2,957 ms |
| コンパイル使用メモリ | 104,192 KB |
| 実行使用メモリ | 17,664 KB |
| 最終ジャッジ日時 | 2024-12-26 12:51:51 |
| 合計ジャッジ時間 | 5,704 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 31 |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
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);
//Console.WriteLine(cnt);
}
}
}
}
mban