提出 #53329883


ソースコード 拡げる

// #pragma GCC optimize("Ofast,unroll-loops")
#include<bits/stdc++.h>
using namespace std;
#define ll long long
#define inf (ll)1e18
#define pll pair<ll, ll>
#define vi vector<int>
#define vl vector<ll>
#define fi first
#define se second
#define lll __int128
const int N = 1e6 + 5;
ll n, k, a[N];
void solve() {
	cin >> n >> k;
	for (ll i = 1; i <= n; i++)
		cin >> a[i];
	ll ans = 0;
	ll have = 0;
	for (ll i = 1; i <= n; i++) {
		if (k - have >= a[i])
			have += a[i];
		else
			ans++, have = a[i];
	}
	ans += have > 0;
	cout << ans << endl;
}
int main() {
	ios::sync_with_stdio(false);
  	cin.tie(0);
  	cout.tie(0);
	solve();
	return 0;
}

提出情報

提出日時
問題 B - AtCoder Amusement Park
ユーザ TopCloser
言語 C++ 20 (gcc 12.2)
得点 200
コード長 680 Byte
結果 AC
実行時間 1 ms
メモリ 3596 KiB

ジャッジ結果

セット名 Sample All
得点 / 配点 0 / 0 200 / 200
結果
AC × 3
AC × 15
セット名 テストケース
Sample 00_sample_00.txt, 00_sample_01.txt, 00_sample_02.txt
All 00_sample_00.txt, 00_sample_01.txt, 00_sample_02.txt, 01_random_03.txt, 01_random_04.txt, 01_random_05.txt, 01_random_06.txt, 01_random_07.txt, 01_random_08.txt, 01_random_09.txt, 01_random_10.txt, 01_random_11.txt, 01_random_12.txt, 01_random_13.txt, 01_random_14.txt
ケース名 結果 実行時間 メモリ
00_sample_00.txt AC 1 ms 3456 KiB
00_sample_01.txt AC 1 ms 3520 KiB
00_sample_02.txt AC 1 ms 3520 KiB
01_random_03.txt AC 1 ms 3452 KiB
01_random_04.txt AC 1 ms 3396 KiB
01_random_05.txt AC 1 ms 3420 KiB
01_random_06.txt AC 1 ms 3468 KiB
01_random_07.txt AC 1 ms 3348 KiB
01_random_08.txt AC 1 ms 3320 KiB
01_random_09.txt AC 1 ms 3596 KiB
01_random_10.txt AC 1 ms 3412 KiB
01_random_11.txt AC 1 ms 3520 KiB
01_random_12.txt AC 1 ms 3468 KiB
01_random_13.txt AC 1 ms 3464 KiB
01_random_14.txt AC 1 ms 3328 KiB