結果

問題 No.2854 -1 Subsequence
ユーザー osada-yumosada-yum
提出日時 2024-09-02 16:41:26
言語 Fortran
(gFortran 13.2.0)
結果
WA  
実行時間 -
コード長 731 bytes
コンパイル時間 754 ms
コンパイル使用メモリ 32,512 KB
実行使用メモリ 7,648 KB
最終ジャッジ日時 2024-09-02 16:41:30
合計ジャッジ時間 3,394 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
6,816 KB
testcase_01 AC 38 ms
6,944 KB
testcase_02 AC 37 ms
6,944 KB
testcase_03 AC 23 ms
6,940 KB
testcase_04 AC 42 ms
6,944 KB
testcase_05 AC 28 ms
6,940 KB
testcase_06 AC 17 ms
6,940 KB
testcase_07 AC 42 ms
6,940 KB
testcase_08 AC 7 ms
6,944 KB
testcase_09 AC 31 ms
6,940 KB
testcase_10 AC 49 ms
7,424 KB
testcase_11 AC 48 ms
7,648 KB
testcase_12 AC 49 ms
7,552 KB
testcase_13 AC 48 ms
7,380 KB
testcase_14 AC 49 ms
7,552 KB
testcase_15 AC 49 ms
7,552 KB
testcase_16 AC 47 ms
7,604 KB
testcase_17 AC 46 ms
7,496 KB
testcase_18 AC 47 ms
7,552 KB
testcase_19 AC 46 ms
7,424 KB
testcase_20 AC 45 ms
7,372 KB
testcase_21 AC 44 ms
7,552 KB
testcase_22 AC 50 ms
7,424 KB
testcase_23 AC 1 ms
6,944 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 1 ms
6,940 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 1 ms
6,944 KB
testcase_31 WA -
testcase_32 AC 1 ms
6,940 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 1 ms
6,944 KB
testcase_36 AC 1 ms
6,940 KB
testcase_37 WA -
testcase_38 AC 1 ms
6,940 KB
testcase_39 WA -
権限があれば一括ダウンロードができます

ソースコード

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, k
  read(input_unit, *) n
  allocate(arr(n))
  read(input_unit, *) arr(:)
  allocate(dp(0:1, 0:n), source = -infini)
  dp(0, 0) = 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))
  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