結果

問題 No.2142 Segment Zero
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2023-01-20 12:27:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 282 ms / 2,000 ms
コード長 561 bytes
コンパイル時間 220 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 143,872 KB
最終ジャッジ日時 2024-06-23 02:43:22
合計ジャッジ時間 6,309 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
55,040 KB
testcase_01 AC 140 ms
143,872 KB
testcase_02 AC 50 ms
54,912 KB
testcase_03 AC 139 ms
143,616 KB
testcase_04 AC 278 ms
143,744 KB
testcase_05 AC 282 ms
143,872 KB
testcase_06 AC 50 ms
55,296 KB
testcase_07 AC 157 ms
143,488 KB
testcase_08 AC 150 ms
143,616 KB
testcase_09 AC 150 ms
143,616 KB
testcase_10 AC 155 ms
143,616 KB
testcase_11 AC 152 ms
143,616 KB
testcase_12 AC 151 ms
143,616 KB
testcase_13 AC 153 ms
143,360 KB
testcase_14 AC 161 ms
143,360 KB
testcase_15 AC 158 ms
143,360 KB
testcase_16 AC 159 ms
143,744 KB
testcase_17 AC 146 ms
141,184 KB
testcase_18 AC 76 ms
86,784 KB
testcase_19 AC 86 ms
84,736 KB
testcase_20 AC 111 ms
122,880 KB
testcase_21 AC 167 ms
132,352 KB
testcase_22 AC 128 ms
139,520 KB
testcase_23 AC 73 ms
84,608 KB
testcase_24 AC 85 ms
96,640 KB
testcase_25 AC 96 ms
104,832 KB
testcase_26 AC 136 ms
138,880 KB
testcase_27 AC 147 ms
139,264 KB
testcase_28 AC 101 ms
111,232 KB
testcase_29 AC 115 ms
123,008 KB
testcase_30 AC 134 ms
139,264 KB
testcase_31 AC 123 ms
138,624 KB
testcase_32 AC 102 ms
93,568 KB
testcase_33 AC 68 ms
77,696 KB
testcase_34 AC 94 ms
104,960 KB
testcase_35 AC 152 ms
143,360 KB
testcase_36 AC 92 ms
86,528 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]<SN-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