結果
問題 | No.8038 フィボナッチ数列の周期 |
ユーザー | 37zigen |
提出日時 | 2018-04-08 00:17:56 |
言語 | Fortran (gFortran 14.2.0) |
結果 |
AC
|
実行時間 | 301 ms / 3,000 ms |
コード長 | 3,750 bytes |
コンパイル時間 | 2,144 ms |
コンパイル使用メモリ | 34,796 KB |
実行使用メモリ | 158,592 KB |
最終ジャッジ日時 | 2024-06-26 11:11:22 |
合計ジャッジ時間 | 8,303 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 204 ms
158,464 KB |
testcase_01 | AC | 203 ms
158,592 KB |
testcase_02 | AC | 202 ms
158,336 KB |
testcase_03 | AC | 203 ms
158,464 KB |
testcase_04 | AC | 203 ms
158,336 KB |
testcase_05 | AC | 203 ms
158,464 KB |
testcase_06 | AC | 204 ms
158,592 KB |
testcase_07 | AC | 206 ms
158,464 KB |
testcase_08 | AC | 202 ms
158,336 KB |
testcase_09 | AC | 202 ms
158,336 KB |
testcase_10 | AC | 202 ms
158,464 KB |
testcase_11 | AC | 203 ms
158,336 KB |
testcase_12 | AC | 204 ms
158,336 KB |
testcase_13 | AC | 203 ms
158,464 KB |
testcase_14 | AC | 204 ms
158,464 KB |
testcase_15 | AC | 206 ms
158,464 KB |
testcase_16 | AC | 300 ms
158,464 KB |
testcase_17 | AC | 300 ms
158,464 KB |
testcase_18 | AC | 300 ms
158,336 KB |
testcase_19 | AC | 301 ms
158,336 KB |
testcase_20 | AC | 295 ms
158,464 KB |
testcase_21 | AC | 297 ms
158,464 KB |
testcase_22 | AC | 296 ms
158,464 KB |
testcase_23 | AC | 296 ms
158,336 KB |
testcase_24 | AC | 298 ms
158,464 KB |
ソースコード
module mdl implicit none contains logical function assert(flag) logical::flag if(.not.flag)call exit(1) end function function mul(a,b,md) implicit none integer(kind=8)::mul(2,2),a(2,2),b(2,2) integer(kind=8)::md integer::i,j,k do i=1,2 do j=1,2 mul(i,j)=0 end do end do do i=1,2 do j=1,2 do k=1,2 mul(i,j)=mul(i,j)+mod(a(i,k)*b(k,j),md) if(mul(i,j)>=md)mul(i,j)=mul(i,j)-md end do end do end do end function function pow_mat(a,pwr,md) implicit none integer(kind=8)::pow_mat(2,2),dub_mat(2,2),a(2,2) integer(kind=8),value::pwr,md integer::i,j,k do i=1,2 do j=1,2 if(i==j)then pow_mat(i,i)=1 else pow_mat(i,j)=0 end if dub_mat(i,j)=a(i,j) end do end do do while(pwr>0) if(mod(pwr,2)==1)pow_mat=mul(pow_mat,dub_mat,md) dub_mat=mul(dub_mat,dub_mat,md) pwr=pwr/2 end do end function integer(kind=8) function pow(a,pwr,md) implicit none integer(kind=8),value::a,pwr,md pow=1 do while(pwr>0) if(mod(pwr,2)==1)pow=mod(pow*a,md) a=mod(a*a,md) pwr=pwr/2 end do end function integer(kind=8) function fib(n,md) implicit none integer(kind=8)::n,md integer(kind=8)::mat(2,2) mat(1,2)=1 mat(1,1)=0 mat(2,1)=1 mat(2,2)=1 mat=pow_mat(mat,n,md) fib=mat(1,2) end function logical function loopsize(n,md) implicit none integer(kind=8)::n,md loopsize=.false. loopsize=fib(0_8,md)==fib(n,md).and.fib(1_8,md)==fib(n+1,md) end function integer(kind=8) function calc(p) implicit none integer(kind=8),value::p integer::i,j,k if(p==2)then calc=3 else if(p==5)then calc=20 else if(mod(p,5)==1.or.mod(p,5)==4)then calc=f(p-1,p) else if(mod(p,5)==2.or.mod(p,5)==3)then calc=f(2*p+2,p) end if end function integer(kind=8) function f(a,md) implicit none integer(kind=8),value::a,md integer(kind=8)::i,j,k f=a do i=1,a if(mod(a,i)==0)then if(loopsize(i,md))then f=min(f,i) end if if(loopsize(a/i,md))then f=min(f,a/i) end if end if if(i*i>=a)exit end do end function end module program main use mdl implicit none integer(kind=8)::i,j,k,cnt integer(kind=8)::ret=1 integer(kind=8)::n,p(1000),d(1000),idx(20000002),tmp,tmp2 integer(kind=8)::md2 md2=1000000007 read*,n do i=1,size(idx) idx(i)=0 end do do i=1,n read(*,*)p(i),d(i) tmp=calc(p(i)) tmp2=0 do j=2,tmp cnt=0 do while(mod(tmp,j)==0) cnt=cnt+1 tmp=tmp/j end do if(j==p(i))tmp2=cnt idx(j)=max(idx(j),cnt) if(j*j>=tmp)exit end do if(tmp>1)then cnt=1 if(tmp==p(i))tmp2=1 idx(tmp)=max(idx(tmp),cnt) end if idx(p(i))=max(idx(p(i)),tmp2+d(i)-1) end do do i=1,size(idx) ret=ret*pow(i,idx(i),md2) ret=mod(ret,md2) end do print*,ret end program