結果
問題 | No.2 素因数ゲーム |
ユーザー | TLwiegehtt |
提出日時 | 2015-07-17 07:20:28 |
言語 | C90 (gcc 11.4.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,182 bytes |
コンパイル時間 | 212 ms |
コンパイル使用メモリ | 23,296 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-07-08 08:20:42 |
合計ジャッジ時間 | 5,850 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 39 ms
5,248 KB |
testcase_01 | AC | 38 ms
5,376 KB |
testcase_02 | AC | 40 ms
5,376 KB |
testcase_03 | AC | 45 ms
5,376 KB |
testcase_04 | AC | 44 ms
5,376 KB |
testcase_05 | AC | 42 ms
5,376 KB |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
コンパイルメッセージ
main.c: In function ‘main’: main.c:42:9: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 42 | scanf("%d", &n); | ^~~~~~~~~~~~~~~
ソースコード
#include <math.h> #include <string.h> #include <stdio.h> char prime[101000]; int list[101000]; void getPrime(int p){ int i,j; for(i=0;i<p;i++){ prime[i] = 1; if((i&1) == 0){ prime[i] = 0; } } prime[0]=0; prime[1]=0; prime[2]=1; for(i=3;i*i<=p;i+=2){ for(j=i+i;j<=p;j+=i){ prime[j]=0; } } } int main(void){ int i,j,n; getPrime(101000); list[1] = 0; list[2] = 1; list[3] = 1; list[4] = 0; list[5] = 1; list[6] = 0; scanf("%d", &n); for(i=4;i<101000;i++){ if(prime[i] == 1){list[i] = 1;continue;} for(j=2;j*j<=i;j++){ if(prime[j] == 1){ int tmp = i; int win = 0; while(tmp%j == 0){ tmp /= j; if(list[tmp] == 0){ win = 1; break; } } if(win == 1){ list[i] = 1; } } } } for(i=2;i*i<=n;i++){ int tmp = n; int win = 0; if(prime[i]==1){ while(tmp%i == 0){ tmp/=i; if(list[tmp] == 0){ win = 1; break; } } if(win==1){ list[n] = 1; break; } } } if(list[n] == 1){ printf("Alice\n"); }else{ printf("Bob\n"); } return 0; }