結果
問題 | No.2601 Very Poor |
ユーザー | cleantted |
提出日時 | 2023-11-24 03:45:36 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,417 bytes |
コンパイル時間 | 359 ms |
コンパイル使用メモリ | 82,548 KB |
実行使用メモリ | 121,688 KB |
最終ジャッジ日時 | 2024-09-27 17:28:18 |
合計ジャッジ時間 | 10,497 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 163 ms
90,496 KB |
testcase_01 | AC | 163 ms
90,152 KB |
testcase_02 | AC | 163 ms
90,080 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
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 | WA | - |
testcase_15 | AC | 222 ms
121,136 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 230 ms
121,148 KB |
testcase_19 | AC | 235 ms
121,644 KB |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | AC | 225 ms
121,460 KB |
testcase_24 | AC | 224 ms
121,440 KB |
testcase_25 | AC | 223 ms
121,296 KB |
testcase_26 | AC | 225 ms
121,260 KB |
testcase_27 | AC | 225 ms
121,652 KB |
testcase_28 | AC | 225 ms
121,268 KB |
testcase_29 | AC | 221 ms
121,392 KB |
testcase_30 | AC | 223 ms
121,092 KB |
testcase_31 | AC | 224 ms
121,516 KB |
testcase_32 | AC | 222 ms
121,392 KB |
testcase_33 | AC | 225 ms
121,128 KB |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
ソースコード
import copy import heapq import itertools import math import operator import sys from bisect import bisect, bisect_left, bisect_right, insort from collections import Counter, deque from fractions import Fraction from functools import cmp_to_key, lru_cache, partial from inspect import currentframe from math import ceil, gcd, log10, pi, sqrt # import pypyjit # pypyjit.set_param('max_unroll_recursion=-1') input = sys.stdin.readline sys.setrecursionlimit(10000000) # mod = 10 ** 9 + 7 mod = 998244353 # mod = 1 << 128 # mod = 10 ** 30 + 1 INF = 1 << 61 DIFF = 10 ** -9 DX = [1, 0, -1, 0, 1, 1, -1, -1] DY = [0, 1, 0, -1, 1, -1, 1, -1] def read_values(): return tuple(map(int, input().split())) def read_index(): return tuple(map(lambda x: int(x) - 1, input().split())) def read_list(): return list(read_values()) def read_lists(N): return [read_list() for _ in range(N)] def dprint(*values): print(*values, file=sys.stderr) def dprint2(*values): names = {id(v): k for k, v in currentframe().f_back.f_locals.items()} dprint(", ".join(f"{names.get(id(value), '???')}={repr(value)}" for value in values)) def main(): N, X = read_values() A = read_list() A += A r = 0 t = 0 res = 0 for i in range(N): while t < X and r < i + N: res = max(t, res) t += A[r] r += 1 t -= A[i] print(res) if __name__ == "__main__": main()