結果

問題 No.3030 ミラー・ラビン素数判定法のテスト
ユーザー 37zigen37zigen
提出日時 2018-04-09 02:00:02
言語 Fortran
(gFortran 13.2.0)
結果
TLE  
実行時間 -
コード長 1,903 bytes
コンパイル時間 325 ms
コンパイル使用メモリ 33,536 KB
実行使用メモリ 9,124 KB
最終ジャッジ日時 2024-11-18 16:19:53
合計ジャッジ時間 33,648 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,820 KB
testcase_01 AC 1 ms
6,820 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 2 ms
6,820 KB
testcase_04 AC 8,752 ms
6,816 KB
testcase_05 AC 8,271 ms
6,816 KB
testcase_06 AC 1,579 ms
6,816 KB
testcase_07 AC 1,614 ms
6,816 KB
testcase_08 AC 1,536 ms
6,816 KB
testcase_09 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

module mdl
contains

    function mul_mod(a,b,m)result(ret)
        implicit none
        integer(8),value::a,b,m
        integer(8)::ret,tmp
        a=mod(a,m)
        b=mod(b,m)
        ret=0
        do while(b>1)
            if(mod(b,2)==0)then
                tmp=a
                if(tmp>=m-a)tmp=tmp-m
                a=mod(a+tmp,m)
                b=b/2
            else
                if(ret>=m-a)ret=ret-m
                ret=mod(ret+a,m)
                b=b-1
            end if
        end do
        if(ret>=m-a)ret=ret-m
        ret=mod(ret+a,m)
    end function

    integer(8) function pow(a,n,p)
        implicit none
        integer(8),value::a,n,p
        a=mod(a,p)
        pow=1
        do while(n>0)
            if(mod(n,2)==1)pow=mul_mod(pow,a,p)
            n=n/2
            a=mul_mod(a,a,p)
        end do
    end function

    logical function isPrime(a)
        integer(8)::p(16)=[2,3,5,7,11,13,17,19,23,29,31,37,41,43,47,53],q,i,j,k,x,y,tmp
        integer(8),value::a
        logical::flag
        isPrime=.true.
        if(a==2)return
        if(a==1.or.mod(a,2)==0)then
            isPrime=.false.
            return
        end if
        q=a-1
        do while(mod(q,2)==0)
            q=q/2
        end do
        do i=1,size(p)
            x=pow(p(i),q,a)
            y=q
            do while(y/=a-1.and.x/=1.and.x/=a-1)
                y=y*2
                x=mul_mod(x,x,a)
            end do
            if(x/=a-1.and.mod(y,2)==0)then
                isPrime=.false.
                return
            end if
        end do
    end function

end module


program main
    use mdl
    implicit none
    integer::n
    integer(8)::i,j,k
    integer(8),allocatable::x(:)
    read*,n
    allocate(x(n))
    do i=1,n
        read*,x(i)
        if(isPrime(x(i)))then
            print*,x(i),1
        else
            print*,x(i),0
        end if
    end do
end program
0