結果

問題 No.2142 Segment Zero
ユーザー ShirotsumeShirotsume
提出日時 2022-12-05 01:35:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 72 ms / 2,000 ms
コード長 704 bytes
コンパイル時間 379 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 71,936 KB
最終ジャッジ日時 2024-10-12 01:26:18
合計ジャッジ時間 3,608 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,376 KB
testcase_01 AC 63 ms
69,632 KB
testcase_02 AC 38 ms
53,632 KB
testcase_03 AC 56 ms
68,224 KB
testcase_04 AC 64 ms
70,528 KB
testcase_05 AC 65 ms
70,144 KB
testcase_06 AC 39 ms
53,760 KB
testcase_07 AC 72 ms
71,936 KB
testcase_08 AC 63 ms
70,144 KB
testcase_09 AC 68 ms
71,936 KB
testcase_10 AC 64 ms
70,144 KB
testcase_11 AC 65 ms
70,528 KB
testcase_12 AC 64 ms
70,144 KB
testcase_13 AC 64 ms
70,528 KB
testcase_14 AC 66 ms
70,656 KB
testcase_15 AC 67 ms
70,144 KB
testcase_16 AC 65 ms
70,016 KB
testcase_17 AC 63 ms
68,992 KB
testcase_18 AC 53 ms
64,128 KB
testcase_19 AC 58 ms
65,920 KB
testcase_20 AC 58 ms
67,328 KB
testcase_21 AC 64 ms
69,888 KB
testcase_22 AC 58 ms
67,328 KB
testcase_23 AC 54 ms
65,024 KB
testcase_24 AC 57 ms
66,816 KB
testcase_25 AC 60 ms
67,200 KB
testcase_26 AC 64 ms
69,632 KB
testcase_27 AC 65 ms
70,272 KB
testcase_28 AC 59 ms
66,176 KB
testcase_29 AC 59 ms
66,944 KB
testcase_30 AC 61 ms
67,840 KB
testcase_31 AC 63 ms
68,864 KB
testcase_32 AC 59 ms
66,816 KB
testcase_33 AC 51 ms
63,744 KB
testcase_34 AC 60 ms
67,456 KB
testcase_35 AC 66 ms
70,144 KB
testcase_36 AC 53 ms
63,872 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from collections import deque, Counter
sys.setrecursionlimit(5 * 10 ** 5)
from pypyjit import set_param
set_param('max_unroll_recursion=-1')
input = lambda: sys.stdin.readline().rstrip()
ii = lambda: int(input())
mi = lambda: map(int, input().split())
li = lambda: list(mi())
inf = 2 ** 63 - 1
mod = 998244353

n, k = mi()

a = list(range(1, n + 1))

k = sum(a) - k

right = 0
#n -> 数列の長さ
s = 0
ans = 2
for left in range(n):
    while right < n:
        s += a[right]
        if s <= k:
            right += 1
        else:
            s -= a[right]
            break

    if s == k:
        ans = 1

    if right == left:
        right += 1
    else:
        s -= a[left]
print(ans)
0