結果
問題 | No.36 素数が嫌い! |
ユーザー | jj |
提出日時 | 2016-10-10 17:16:45 |
言語 | Fortran (gFortran 13.2.0) |
結果 |
AC
|
実行時間 | 163 ms / 5,000 ms |
コード長 | 1,327 bytes |
コンパイル時間 | 1,456 ms |
コンパイル使用メモリ | 34,288 KB |
実行使用メモリ | 77,952 KB |
最終ジャッジ日時 | 2024-06-27 00:49:52 |
合計ジャッジ時間 | 3,529 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 29 ms
37,376 KB |
testcase_01 | AC | 47 ms
61,056 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 1 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 1 ms
5,376 KB |
testcase_09 | AC | 1 ms
5,376 KB |
testcase_10 | AC | 1 ms
5,376 KB |
testcase_11 | AC | 54 ms
26,880 KB |
testcase_12 | AC | 163 ms
77,952 KB |
testcase_13 | AC | 158 ms
77,696 KB |
testcase_14 | AC | 34 ms
49,152 KB |
testcase_15 | AC | 1 ms
5,376 KB |
testcase_16 | AC | 1 ms
5,376 KB |
testcase_17 | AC | 1 ms
5,376 KB |
testcase_18 | AC | 1 ms
5,376 KB |
testcase_19 | AC | 24 ms
31,744 KB |
testcase_20 | AC | 64 ms
77,696 KB |
testcase_21 | AC | 53 ms
60,032 KB |
testcase_22 | AC | 48 ms
61,696 KB |
testcase_23 | AC | 29 ms
38,016 KB |
testcase_24 | AC | 47 ms
42,112 KB |
testcase_25 | AC | 32 ms
41,344 KB |
testcase_26 | AC | 83 ms
48,000 KB |
testcase_27 | AC | 140 ms
66,944 KB |
testcase_28 | AC | 79 ms
47,104 KB |
testcase_29 | AC | 154 ms
75,136 KB |
ソースコード
program main implicit none integer*8::N,upper,i integer*8,allocatable::base(:),exponents(:) read *,N upper = DINT(log(DBLE(N)))+1_8 allocate(base(upper),exponents(upper)) base = 0 exponents = 0 call factorization(N, base, exponents) contains subroutine factorization(n, base, exponents) integer*8::n,base(:),exponents(:) integer*8::i,j,itr,upper,total_exponents integer*8,allocatable::furui(:) data itr/0/, total_exponents/0/ upper = INT(SQRT(DBLE(n)+1)) allocate(furui(2:upper)) furui = 0 do i=2,upper if(furui(i).ne.0) cycle if(MOD(n, i).ne.0) cycle itr = itr + 1 base(itr) = i do j=i+i,upper,i furui(j) = 1 end do do j=1,upper n = n/i if(MOD(n,i).ne.0) exit end do exponents(itr) = j total_exponents = total_exponents + j if(n.ne.1) then if(total_exponents.ge.2) then print '(a)',"YES" return end if else if(total_exponents.ge.3) then print '(a)',"YES" else print '(a)',"NO" end if return end if end do itr = itr + 1 base(itr) = n exponents(itr) = 1 print '(a)', "NO" end subroutine factorization end program main