結果

問題 No.371 ぼく悪いプライムじゃないよ
ユーザー jjjj
提出日時 2016-09-03 17:44:54
言語 Fortran
(gFortran 13.2.0)
結果
TLE  
実行時間 -
コード長 433 bytes
コンパイル時間 1,540 ms
コンパイル使用メモリ 32,504 KB
実行使用メモリ 813,616 KB
最終ジャッジ日時 2024-11-15 19:04:22
合計ジャッジ時間 8,769 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,820 KB
testcase_01 AC 1 ms
6,820 KB
testcase_02 AC 1 ms
6,820 KB
testcase_03 AC 1 ms
6,820 KB
testcase_04 AC 1 ms
6,816 KB
testcase_05 AC 1 ms
6,816 KB
testcase_06 AC 1 ms
6,816 KB
testcase_07 AC 1 ms
6,820 KB
testcase_08 AC 1 ms
6,816 KB
testcase_09 AC 1 ms
6,816 KB
testcase_10 AC 1 ms
6,816 KB
testcase_11 AC 2 ms
6,820 KB
testcase_12 AC 1 ms
6,820 KB
testcase_13 AC 1 ms
6,816 KB
testcase_14 AC 1 ms
6,816 KB
testcase_15 AC 2 ms
6,816 KB
testcase_16 AC 1 ms
6,816 KB
testcase_17 AC 1 ms
6,816 KB
testcase_18 AC 1 ms
6,816 KB
testcase_19 AC 1 ms
6,816 KB
testcase_20 AC 9 ms
10,056 KB
testcase_21 AC 1 ms
6,820 KB
testcase_22 TLE -
testcase_23 AC 2 ms
6,816 KB
testcase_24 AC 10 ms
7,732 KB
testcase_25 RE -
testcase_26 AC 2 ms
6,820 KB
testcase_27 AC 2 ms
6,820 KB
testcase_28 AC 3 ms
6,816 KB
testcase_29 AC 6 ms
6,820 KB
testcase_30 RE -
testcase_31 RE -
testcase_32 TLE -
testcase_33 RE -
testcase_34 RE -
testcase_35 RE -
testcase_36 MLE -
testcase_37 MLE -
testcase_38 RE -
testcase_39 RE -
testcase_40 RE -
testcase_41 RE -
testcase_42 RE -
testcase_43 AC 5 ms
6,688 KB
testcase_44 AC 2 ms
6,692 KB
testcase_45 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

program main
  implicit none
  integer*8::L,H,up,i,j,bad
  integer*8,allocatable::dp(:),dp2(:)
  read *,L,H
  up = INT(SQRT(DBLE(H)))
  allocate(dp(up),dp2(L:H))
  dp  = 0
  dp2 = 0
  bad = 1
  do i=2,up
     if(dp(i).ne.0) cycle
     do j=i+i,up,i
        dp(j) = 1
     end do

     do j=((L+i-1)/i)*i,H,i
        if(dp2(j).ne.0) cycle
        dp2(j) = 1
        bad    = j
     end do
  end do

  print'(i0)',bad
end program main
0