結果

問題 No.2 素因数ゲーム
ユーザー goodbaton
提出日時 2015-07-15 22:56:18
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 703 bytes
コンパイル時間 840 ms
コンパイル使用メモリ 70,568 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-12-26 11:35:33
合計ジャッジ時間 1,914 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 31
権限があれば一括ダウンロードができます
コンパイルメッセージ
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);
      |     ~~~~~^~~~~~~~~

ソースコード

diff #

#include <cstdio>
#include <cstdlib>
#include <iostream>
#include <string>
#include <cmath>
#include <algorithm>
#include <vector>
#include <queue>
#include <stack>
#include <map>
#include <set>

typedef long long ll;
using namespace std;

#define mod 1000000007
#define INF 1000000000
#define LLINF 2000000000000000000LL

#define SIZE 200000

int n;
int ans=0;


int main(){
    
    scanf("%d",&n);
    
    for(int i=2;i*i<=n;i++){
        int c=0;
        
        while(n%i==0){
            c++;
            n/=i;
        }
        
        if(c>0)
            ans^=c;
    }
    
    if(n>1)
        ans^=1;

    if(ans==0)
        puts("Bob");
    else
        puts("Alice");
    
    return 0;
}
0