結果

問題 No.2854 -1 Subsequence
ユーザー osada-yumosada-yum
提出日時 2024-09-02 16:47:15
言語 Fortran
(gFortran 13.2.0)
結果
AC  
実行時間 54 ms / 2,000 ms
コード長 754 bytes
コンパイル時間 610 ms
コンパイル使用メモリ 32,896 KB
実行使用メモリ 9,280 KB
最終ジャッジ日時 2024-09-02 16:47:18
合計ジャッジ時間 3,564 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
7,852 KB
testcase_01 AC 40 ms
7,616 KB
testcase_02 AC 42 ms
7,808 KB
testcase_03 AC 24 ms
6,940 KB
testcase_04 AC 46 ms
8,484 KB
testcase_05 AC 31 ms
6,940 KB
testcase_06 AC 18 ms
6,940 KB
testcase_07 AC 46 ms
8,240 KB
testcase_08 AC 8 ms
6,940 KB
testcase_09 AC 33 ms
6,940 KB
testcase_10 AC 52 ms
9,048 KB
testcase_11 AC 51 ms
9,072 KB
testcase_12 AC 51 ms
9,172 KB
testcase_13 AC 52 ms
9,164 KB
testcase_14 AC 53 ms
8,932 KB
testcase_15 AC 51 ms
9,068 KB
testcase_16 AC 52 ms
9,096 KB
testcase_17 AC 51 ms
9,052 KB
testcase_18 AC 52 ms
9,280 KB
testcase_19 AC 53 ms
9,096 KB
testcase_20 AC 49 ms
9,000 KB
testcase_21 AC 48 ms
9,076 KB
testcase_22 AC 54 ms
8,928 KB
testcase_23 AC 1 ms
6,944 KB
testcase_24 AC 1 ms
6,944 KB
testcase_25 AC 2 ms
6,940 KB
testcase_26 AC 1 ms
6,944 KB
testcase_27 AC 1 ms
6,944 KB
testcase_28 AC 2 ms
6,940 KB
testcase_29 AC 1 ms
6,944 KB
testcase_30 AC 1 ms
6,944 KB
testcase_31 AC 1 ms
6,944 KB
testcase_32 AC 1 ms
6,944 KB
testcase_33 AC 1 ms
6,940 KB
testcase_34 AC 1 ms
6,944 KB
testcase_35 AC 1 ms
6,940 KB
testcase_36 AC 1 ms
6,940 KB
testcase_37 AC 1 ms
6,940 KB
testcase_38 AC 1 ms
6,940 KB
testcase_39 AC 1 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

program yukicoder_2854
  use, intrinsic :: iso_fortran_env
  implicit none
  integer(int64), parameter :: infini = ishft(1_int64, 55)
  integer(int32) :: n
  integer(int64), allocatable :: arr(:), dp(:, :)
  integer(int32) :: i
  read(input_unit, *) n
  allocate(arr(n))
  read(input_unit, *) arr(:)
  allocate(dp(-1:1, 0:n), source = -infini)
  dp(-1, :) = 0_int64
  do i = 1, n
     !> 今の長さが偶数(0).
     dp(0, i) = max(dp(0, i - 1), dp(1, i - 1) + arr(i))
     !> 今の長さが奇数(1).
     dp(1, i) = max(dp(1, i - 1), dp(0, i - 1) - arr(i), dp(-1, i - 1) - arr(i))
  end do
  ! do i = 1, n
  !    write(error_unit, '(*(g0, 1x))') i, ":", dp(:, i)
  ! end do
  write(output_unit, '(i0)') maxval(dp(0:1, n))
end program yukicoder_2854
0