結果
| 問題 | No.103 素因数ゲーム リターンズ | 
| コンテスト | |
| ユーザー |  goodbaton | 
| 提出日時 | 2015-08-04 23:58:04 | 
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) | 
| 結果 | 
                                AC
                                 
                             | 
| 実行時間 | 2 ms / 5,000 ms | 
| コード長 | 829 bytes | 
| コンパイル時間 | 609 ms | 
| コンパイル使用メモリ | 71,844 KB | 
| 実行使用メモリ | 5,376 KB | 
| 最終ジャッジ日時 | 2024-07-18 01:21:34 | 
| 合計ジャッジ時間 | 1,583 ms | 
| ジャッジサーバーID (参考情報) | judge3 / judge2 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 5 | 
| other | AC * 20 | 
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:28:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   28 |     scanf("%d",&n);
      |     ~~~~~^~~~~~~~~
main.cpp:31:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   31 |         scanf("%d",&m);
      |         ~~~~~^~~~~~~~~
            
            ソースコード
#include <cstdio>
#include <cstdlib>
#include <iostream>
#include <string>
#include <cmath>
#include <algorithm>
#include <vector>
#include <queue>
#include <stack>
#include <map>
#include <set>
#include <cstring>
typedef long long ll;
using namespace std;
#define mod 1000000009
#define INF 10000000
#define LLINF 2000000000000000000LL
#define PI 3.1415926536
#define SIZE 101
int main(){
    int n,m,ans=0;
    
    scanf("%d",&n);
    
    for(int i=0;i<n;i++){
        scanf("%d",&m);
        
        for(int i=2;i*i<=m;i++){
            int cc=0;
            while(m%i==0){
                cc++;
                m/=i;
            }
            ans^=cc%3;
        }
        
        if(m>1)
            ans^=1;
    }
    
    if(ans==0){
        puts("Bob");
    }else{
        puts("Alice");
    }
    
    return 0;
}
            
            
            
        