結果

問題 No.2142 Segment Zero
ユーザー 👑 KazunKazun
提出日時 2022-12-02 21:36:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 294 ms / 2,000 ms
コード長 295 bytes
コンパイル時間 407 ms
コンパイル使用メモリ 82,368 KB
実行使用メモリ 225,980 KB
最終ジャッジ日時 2024-10-09 22:42:48
合計ジャッジ時間 7,358 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,348 KB
testcase_01 AC 257 ms
224,244 KB
testcase_02 AC 36 ms
52,692 KB
testcase_03 AC 37 ms
52,368 KB
testcase_04 AC 253 ms
224,540 KB
testcase_05 AC 256 ms
224,720 KB
testcase_06 AC 37 ms
53,120 KB
testcase_07 AC 90 ms
103,244 KB
testcase_08 AC 251 ms
224,512 KB
testcase_09 AC 149 ms
160,888 KB
testcase_10 AC 247 ms
224,928 KB
testcase_11 AC 247 ms
224,912 KB
testcase_12 AC 251 ms
225,980 KB
testcase_13 AC 247 ms
225,552 KB
testcase_14 AC 252 ms
225,044 KB
testcase_15 AC 258 ms
225,192 KB
testcase_16 AC 252 ms
225,664 KB
testcase_17 AC 204 ms
193,112 KB
testcase_18 AC 45 ms
62,932 KB
testcase_19 AC 62 ms
79,592 KB
testcase_20 AC 132 ms
149,872 KB
testcase_21 AC 109 ms
130,896 KB
testcase_22 AC 209 ms
179,584 KB
testcase_23 AC 75 ms
89,984 KB
testcase_24 AC 96 ms
107,264 KB
testcase_25 AC 74 ms
89,984 KB
testcase_26 AC 143 ms
139,896 KB
testcase_27 AC 91 ms
102,580 KB
testcase_28 AC 126 ms
131,200 KB
testcase_29 AC 156 ms
148,352 KB
testcase_30 AC 211 ms
179,328 KB
testcase_31 AC 44 ms
63,452 KB
testcase_32 AC 86 ms
97,616 KB
testcase_33 AC 61 ms
77,212 KB
testcase_34 AC 84 ms
98,120 KB
testcase_35 AC 294 ms
224,160 KB
testcase_36 AC 78 ms
94,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve():
    N,K=map(int,input().split())

    M=N*(N+1)//2

    if K==M:
        return 0

    S={0}; s=0
    for a in range(1,N+1):
        s+=a
        if s-(M-K) in S:
            return 1
        S.add(s)

    return 2
#==================================================
print(solve())
0