結果

問題 No.1104 オンライン点呼
ユーザー kotatsugamekotatsugame
提出日時 2020-07-03 22:03:28
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 378 bytes
コンパイル時間 733 ms
コンパイル使用メモリ 67,092 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-17 01:07:46
合計ジャッジ時間 3,125 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 82 ms
5,760 KB
testcase_02 AC 76 ms
5,632 KB
testcase_03 AC 56 ms
5,760 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 34 ms
5,376 KB
testcase_08 AC 15 ms
5,376 KB
testcase_09 AC 32 ms
5,760 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 23 ms
5,376 KB
testcase_12 AC 34 ms
5,376 KB
testcase_13 AC 29 ms
5,376 KB
testcase_14 AC 5 ms
5,376 KB
testcase_15 AC 46 ms
5,376 KB
testcase_16 WA -
testcase_17 AC 33 ms
5,376 KB
testcase_18 AC 42 ms
5,376 KB
testcase_19 AC 63 ms
5,376 KB
testcase_20 AC 68 ms
5,632 KB
testcase_21 AC 69 ms
5,376 KB
testcase_22 AC 57 ms
5,376 KB
testcase_23 AC 45 ms
5,376 KB
testcase_24 AC 21 ms
5,376 KB
testcase_25 AC 2 ms
5,376 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:7:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
    7 | main()
      | ^~~~

ソースコード

diff #

#include<iostream>
#include<algorithm>
using namespace std;
int N;
long K,A[1<<17],B[1<<17];
long t[1<<17];
main()
{
	cin>>N>>K;
	for(int i=0;i<N;i++)cin>>A[i];
	for(int i=0;i<N;i++)cin>>B[i];
	t[0]=0;
	long ans=0;
	for(int i=1;i<N;i++)
	{
		t[i]=t[i-1]+A[i-1]+B[i];
		if(i>=2&&t[i]>t[i-2]+A[i-2]+B[i]+K)t[i]=t[i-2]+A[i-2]+B[i]+K;
		if(ans<t[i])ans=t[i];
	}
	cout<<ans<<endl;
}
0