結果

問題 No.2142 Segment Zero
ユーザー lloyzlloyz
提出日時 2023-01-04 00:05:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 263 ms / 2,000 ms
コード長 438 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 224,896 KB
最終ジャッジ日時 2024-05-05 07:49:19
合計ジャッジ時間 6,799 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,968 KB
testcase_01 AC 260 ms
224,896 KB
testcase_02 AC 36 ms
51,584 KB
testcase_03 AC 35 ms
51,968 KB
testcase_04 AC 257 ms
224,512 KB
testcase_05 AC 253 ms
224,768 KB
testcase_06 AC 35 ms
51,712 KB
testcase_07 AC 92 ms
103,040 KB
testcase_08 AC 255 ms
224,256 KB
testcase_09 AC 161 ms
159,744 KB
testcase_10 AC 249 ms
224,640 KB
testcase_11 AC 248 ms
224,384 KB
testcase_12 AC 246 ms
224,512 KB
testcase_13 AC 246 ms
224,640 KB
testcase_14 AC 263 ms
224,640 KB
testcase_15 AC 263 ms
224,384 KB
testcase_16 AC 247 ms
224,640 KB
testcase_17 AC 208 ms
193,280 KB
testcase_18 AC 45 ms
62,720 KB
testcase_19 AC 66 ms
79,360 KB
testcase_20 AC 145 ms
149,120 KB
testcase_21 AC 126 ms
131,456 KB
testcase_22 AC 206 ms
179,840 KB
testcase_23 AC 75 ms
90,240 KB
testcase_24 AC 101 ms
107,648 KB
testcase_25 AC 77 ms
90,368 KB
testcase_26 AC 141 ms
140,288 KB
testcase_27 AC 92 ms
102,912 KB
testcase_28 AC 124 ms
131,840 KB
testcase_29 AC 145 ms
148,736 KB
testcase_30 AC 190 ms
179,584 KB
testcase_31 AC 44 ms
62,336 KB
testcase_32 AC 84 ms
97,920 KB
testcase_33 AC 61 ms
77,184 KB
testcase_34 AC 90 ms
98,176 KB
testcase_35 AC 263 ms
224,384 KB
testcase_36 AC 82 ms
93,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k = map(int, input().split())

s = n * (n + 1) // 2
# 総和から求める数を引いた差について見てる
dif = s - k
seen = set()
seen.add(0)
res = 0
for i in range(1, n + 1):
    res += i
    # 一部の総和からdifを引いた数がseenに含まれる場合は
    # その総和から後ろの方を除けばよいので1回となる
    if res - dif in seen:
        print(1)
        exit()
    seen.add(res)
print(2)
0