結果

問題 No.2142 Segment Zero
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2023-01-20 12:27:13
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 558 bytes
コンパイル時間 218 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 143,872 KB
最終ジャッジ日時 2024-06-23 02:43:15
合計ジャッジ時間 8,133 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
55,552 KB
testcase_01 AC 147 ms
143,488 KB
testcase_02 AC 50 ms
55,424 KB
testcase_03 AC 142 ms
143,488 KB
testcase_04 AC 176 ms
143,232 KB
testcase_05 AC 175 ms
143,616 KB
testcase_06 AC 50 ms
55,168 KB
testcase_07 AC 159 ms
143,360 KB
testcase_08 AC 258 ms
143,744 KB
testcase_09 AC 155 ms
143,744 KB
testcase_10 AC 300 ms
143,488 KB
testcase_11 AC 341 ms
143,360 KB
testcase_12 AC 294 ms
143,744 KB
testcase_13 AC 293 ms
143,872 KB
testcase_14 AC 299 ms
143,744 KB
testcase_15 AC 296 ms
143,488 KB
testcase_16 AC 295 ms
143,488 KB
testcase_17 AC 289 ms
140,928 KB
testcase_18 AC 81 ms
87,168 KB
testcase_19 AC 91 ms
84,992 KB
testcase_20 AC 210 ms
122,880 KB
testcase_21 WA -
testcase_22 AC 230 ms
139,264 KB
testcase_23 AC 76 ms
84,096 KB
testcase_24 AC 90 ms
96,512 KB
testcase_25 AC 103 ms
104,832 KB
testcase_26 AC 142 ms
139,008 KB
testcase_27 AC 152 ms
139,648 KB
testcase_28 AC 181 ms
111,488 KB
testcase_29 AC 207 ms
122,752 KB
testcase_30 AC 235 ms
139,008 KB
testcase_31 AC 130 ms
139,008 KB
testcase_32 AC 107 ms
93,312 KB
testcase_33 AC 72 ms
77,440 KB
testcase_34 AC 101 ms
105,344 KB
testcase_35 AC 286 ms
142,848 KB
testcase_36 AC 102 ms
86,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *
from itertools import *
from functools import *
from heapq import *
import math,sys
input = sys.stdin.readline

N,K = map(int,input().split())
A = [i+1 for i in range(N)]
S = list(accumulate([0]+A))
if S[-1]==K:
    print(0)
    exit()
SN = N*(N+1)//2
for i in range(N):
    
    if S[-1]-S[i]<K:
        break
    
    y = N
    x = i
    while y-x>1:
        mid = (y+x)//2
        
        if S[mid]-S[i]<SN-K:
            x = mid
        else:
            y = mid
    if S[y]-S[i]==SN-K:
        print(1)
        exit()
print(2)
0