結果

問題 No.2601 Very Poor
ユーザー 沙耶花沙耶花
提出日時 2024-01-12 21:25:55
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 549 bytes
コンパイル時間 3,887 ms
コンパイル使用メモリ 262,240 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-09-30 06:11:51
合計ジャッジ時間 6,500 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 33 WA * 1
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <bits/stdc++.h>
#include <atcoder/all>
using namespace atcoder;
using mint = modint998244353;
using namespace std;
#define rep(i,n) for (int i = 0; i < (n); ++i)
#define Inf32 1000000001
#define Inf64 4000000000000000001


int main(){
	
	int n;
	cin>>n;
	long long x;
	cin>>x;
	vector<long long> s(n+1);
	rep(i,n){
		cin>>s[i+1];
		s[i+1] += s[i];
	}
	long long ans = 0;
	rep(i,n){
		int d = distance(s.begin(),upper_bound(s.begin(),s.end(),s[i] + x));
		ans = max(ans,s[d-1] - s[i]);
	}
	cout<<ans<<endl;
	
	return 0;
}
0