結果

問題 No.2142 Segment Zero
ユーザー titiatitia
提出日時 2022-12-02 22:08:00
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 556 bytes
コンパイル時間 357 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 77,824 KB
最終ジャッジ日時 2024-10-09 23:37:37
合計ジャッジ時間 3,785 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,968 KB
testcase_01 AC 66 ms
74,496 KB
testcase_02 AC 39 ms
52,096 KB
testcase_03 AC 70 ms
75,520 KB
testcase_04 AC 73 ms
76,544 KB
testcase_05 AC 72 ms
76,160 KB
testcase_06 AC 37 ms
52,480 KB
testcase_07 WA -
testcase_08 AC 67 ms
76,544 KB
testcase_09 WA -
testcase_10 AC 69 ms
76,164 KB
testcase_11 AC 69 ms
76,160 KB
testcase_12 AC 77 ms
77,824 KB
testcase_13 AC 75 ms
77,568 KB
testcase_14 AC 71 ms
76,672 KB
testcase_15 AC 78 ms
77,568 KB
testcase_16 AC 70 ms
76,800 KB
testcase_17 AC 65 ms
73,600 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 56 ms
67,968 KB
testcase_21 WA -
testcase_22 AC 62 ms
71,552 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 62 ms
68,224 KB
testcase_29 AC 63 ms
69,376 KB
testcase_30 AC 62 ms
71,680 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 75 ms
77,312 KB
testcase_36 AC 55 ms
64,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K=map(int,input().split())

ANS=N

A=[0]*N

x=K
for i in range(N,0,-1):
    if x>=i:
        A[i-1]=1
        x-=i


count=0
for i in range(N):
    if A[i]==0 and (i==0 or A[i-1]==1):
        count+=1

ANS=min(ANS,count)


A=[0]*N

x=K
for i in range(N,0,-1):
    if x>=i:
        A[i-1]=1
        x-=i
    else:
        break

for i in range(1,N+1):
    if x>=i and A[i-1]==0:
        A[i-1]=1
        x-=i

if x==0:
    count=0
    for i in range(N):
        if A[i]==0 and (i==0 or A[i-1]==1):
            count+=1

    ANS=min(ANS,count)

print(ANS)
0