結果
| 問題 |
No.2601 Very Poor
|
| コンテスト | |
| ユーザー |
沙耶花
|
| 提出日時 | 2024-01-12 21:25:55 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
(最新)
AC
(最初)
|
| 実行時間 | - |
| コード長 | 549 bytes |
| コンパイル時間 | 6,634 ms |
| コンパイル使用メモリ | 249,148 KB |
| 最終ジャッジ日時 | 2025-02-18 17:39:32 |
|
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 33 WA * 1 |
ソースコード
#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;
}
沙耶花