結果

問題 No.409 ダイエット
ユーザー jjjj
提出日時 2016-08-05 23:30:03
言語 Fortran
(gFortran 13.2.0)
結果
WA  
実行時間 -
コード長 456 bytes
コンパイル時間 1,908 ms
コンパイル使用メモリ 33,664 KB
実行使用メモリ 376,320 KB
最終ジャッジ日時 2024-04-24 19:16:33
合計ジャッジ時間 7,982 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 WA -
testcase_50 WA -
testcase_51 WA -
testcase_52 WA -
testcase_53 WA -
testcase_54 WA -
testcase_55 RE -
testcase_56 RE -
testcase_57 RE -
testcase_58 RE -
testcase_59 RE -
testcase_60 RE -
testcase_61 RE -
testcase_62 RE -
testcase_63 RE -
testcase_64 RE -
testcase_65 RE -
testcase_66 RE -
testcase_67 RE -
testcase_68 RE -
testcase_69 RE -
testcase_70 RE -
testcase_71 RE -
testcase_72 RE -
testcase_73 RE -
testcase_74 RE -
testcase_75 RE -
testcase_76 RE -
testcase_77 RE -
testcase_78 RE -
testcase_79 RE -
testcase_80 RE -
testcase_81 RE -
testcase_82 RE -
testcase_83 RE -
testcase_84 RE -
testcase_85 TLE -
testcase_86 -- -
testcase_87 -- -
testcase_88 -- -
testcase_89 -- -
testcase_90 -- -
testcase_91 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

program main
  implicit none
  integer::N,A,B,W,i,j
  integer,allocatable::D(:)
  integer,allocatable::dp(:,:)

  read *, N,A,B,W
  allocate(D(N))
  allocate(dp(0:N,0:N))

  read *, D

  print *, N,A,B,W
  print *, D

  dp(0,0) = W
  dp(1,0) = W + D(1)
  dp(1,1) = W - A + B*1

  do i=2,N
     dp(i,0) = MINVAL(dp(i-1,0:i-1)) + D(i)
     do j=1,i
        dp(i,j) = dp(i-1,j-1) - A + B*j
     end do
  end do

  print '(i0)', MINVAL(dp(N,0:N))

end program
0