結果

問題 No.1268 Fruit Rush 2
ユーザー hanyuhanyu
提出日時 2020-05-31 23:37:28
言語 Fortran
(gFortran 13.2.0)
結果
RE  
実行時間 -
コード長 563 bytes
コンパイル時間 2,268 ms
コンパイル使用メモリ 32,000 KB
実行使用メモリ 13,756 KB
最終ジャッジ日時 2024-06-22 07:44:06
合計ジャッジ時間 4,935 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
13,756 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 1 ms
6,944 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 RE -
testcase_08 RE -
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 1 ms
6,940 KB
testcase_12 RE -
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 2 ms
6,944 KB
testcase_15 RE -
testcase_16 AC 32 ms
6,940 KB
testcase_17 AC 27 ms
6,940 KB
testcase_18 AC 29 ms
6,940 KB
testcase_19 AC 28 ms
6,944 KB
testcase_20 AC 28 ms
6,940 KB
testcase_21 AC 28 ms
6,940 KB
testcase_22 AC 32 ms
6,944 KB
testcase_23 AC 32 ms
6,940 KB
testcase_24 AC 28 ms
6,944 KB
testcase_25 AC 28 ms
6,940 KB
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 TLE -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

! 愚直パターン
program main
  
  implicit none
  
  integer(8):: n, i, ans, it, keep
  integer:: x(1:200000)
  integer, allocatable:: a(:)
  
  read (*, *) n
  allocate(a(n))
  read (*, *) a(1:n)
  
  do i = 1, n
    x(a(i)) = 1
  end do
  
  ans = n
  do i = 2, 200000
    if (x(i - 1) > 0 .and. x(i) > 0) then
      keep = 1
      do it = i, 199998, 2
        if (x(it + 2) > 0) then
          keep = keep + 1
        else
          exit
        end if
      end do
      ans = ans + keep
    end if
  end do
  
  write (*, '(i0)') ans
  
end program main
0