結果
問題 | No.3030 ミラー・ラビン素数判定法のテスト |
ユーザー | 👑 testestest |
提出日時 | 2017-10-23 02:26:34 |
言語 | C (gcc 12.3.0) |
結果 |
AC
|
実行時間 | 2,032 ms / 9,973 ms |
コード長 | 1,142 bytes |
コンパイル時間 | 392 ms |
コンパイル使用メモリ | 30,720 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-16 23:03:28 |
合計ジャッジ時間 | 6,278 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,248 KB |
testcase_02 | AC | 1 ms
5,248 KB |
testcase_03 | AC | 1 ms
5,248 KB |
testcase_04 | AC | 1,112 ms
5,248 KB |
testcase_05 | AC | 1,066 ms
5,248 KB |
testcase_06 | AC | 415 ms
5,248 KB |
testcase_07 | AC | 401 ms
5,248 KB |
testcase_08 | AC | 401 ms
5,248 KB |
testcase_09 | AC | 2,032 ms
5,248 KB |
コンパイルメッセージ
main.c:39:1: warning: return type defaults to 'int' [-Wimplicit-int] 39 | main(){ | ^~~~ main.c: In function 'main': main.c:40:9: warning: implicit declaration of function 'scanf' [-Wimplicit-function-declaration] 40 | scanf("%d",&n); | ^~~~~ main.c:1:1: note: include '<stdio.h>' or provide a declaration of 'scanf' +++ |+#include <stdio.h> 1 | #define ll long long main.c:40:9: warning: incompatible implicit declaration of built-in function 'scanf' [-Wbuiltin-declaration-mismatch] 40 | scanf("%d",&n); | ^~~~~ main.c:40:9: note: include '<stdio.h>' or provide a declaration of 'scanf' main.c:43:17: warning: implicit declaration of function 'printf' [-Wimplicit-function-declaration] 43 | printf("%lld %d\n",x,isp(x)); | ^~~~~~ main.c:43:17: note: include '<stdio.h>' or provide a declaration of 'printf' main.c:43:17: warning: incompatible implicit declaration of built-in function 'printf' [-Wbuiltin-declaration-mismatch] main.c:43:17: note: include '<stdio.h>' or provide a declaration of 'printf'
ソースコード
#define ll long long #define ull unsigned long long #define bool int #define T 1 #define F 0 ll pom(ll a,ll n,int m){ll x=1;for(a%=m;n;n/=2)n%2?x=x*a%m:0,a=a*a%m;return x;} ll mumll(ull p,ll q,ll m){ull x=0;for(p%=m;q;q/=2)q&1?x+=p,x>=m?x-=m:0:0,p<<=1,p>=m?p-=m:0;return(ll)x;} ll pomll(ll a,ll n,ll m){ll x=1;for(;n;n/=2)n&1?x=mumll(x,a,m):0,a=mumll(a,a,m);return x;} //ミラーラビン ll sus[]={2,7,61,0}; //ll susll[]={2,3,5,7,11,13,17,19,23,29,31,37,0}; ll susll[]={2,325,9375,28178,450775,9780504,1795265022,0}; bool isp(ll n){ if(n==2)return T; if(n<2||n%2==0)return F; ll d=(n-1)/(n-1&1-n); if(n<(1LL<<31)){ for(int i=0;sus[i];i++){ if(sus[i]>=n)return T; ll t=d,a=pom(sus[i],t,n); if(a==1||a==n-1)continue; while((t*=2)!=n-1&&(a=a*a%n)!=n-1&&a!=1); if(t==n-1||a==1)return F; } return T; } for(int i=0;susll[i];i++){ if(susll[i]%n==0)continue; ll t=d,a=pomll(susll[i],t,n); if(a==1||a==n-1)continue; while((t*=2)!=n-1&&(a=mumll(a,a,n))!=n-1&&a!=1); if(t==n-1||a==1)return F; } return T; } ll n,x; main(){ scanf("%d",&n); while(n--){ scanf("%lld",&x); printf("%lld %d\n",x,isp(x)); } }