結果

問題 No.561 東京と京都
ユーザー BQZetBQZet
提出日時 2017-12-09 03:42:32
言語 Fortran
(gFortran 13.2.0)
結果
WA  
実行時間 -
コード長 369 bytes
コンパイル時間 2,041 ms
コンパイル使用メモリ 32,512 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-05-07 08:46:21
合計ジャッジ時間 3,508 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 1 ms
6,944 KB
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 AC 1 ms
6,944 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

integer::N,D,i,j=0,place=1,mx,M(4)
integer,allocatable,dimension(:)::T,K
integer,allocatable,dimension(:,:)::sum

read *,N,D
allocate(T(N),K(N),sum(2,N))
do i=1,N
 read *,T(i),K(i)
end do

sum(1,0)=0
sum(2,0)=-D

do i=1,N
 sum(1,i)=max(sum(1,i-1),sum(2,i)-D)+T(i)
 sum(2,i)=max(sum(2,i-1),sum(1,i)-D)+K(i)
end do

print *,max(sum(1,N),sum(2,N))

end
0