結果

問題 No.2142 Segment Zero
ユーザー lloyzlloyz
提出日時 2023-01-04 00:05:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 260 ms / 2,000 ms
コード長 438 bytes
コンパイル時間 174 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 224,512 KB
最終ジャッジ日時 2024-11-27 02:39:09
合計ジャッジ時間 6,782 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,712 KB
testcase_01 AC 260 ms
224,384 KB
testcase_02 AC 37 ms
51,072 KB
testcase_03 AC 36 ms
51,584 KB
testcase_04 AC 251 ms
224,512 KB
testcase_05 AC 249 ms
224,512 KB
testcase_06 AC 37 ms
51,328 KB
testcase_07 AC 89 ms
102,400 KB
testcase_08 AC 250 ms
224,000 KB
testcase_09 AC 152 ms
159,616 KB
testcase_10 AC 249 ms
224,128 KB
testcase_11 AC 256 ms
223,872 KB
testcase_12 AC 250 ms
224,512 KB
testcase_13 AC 249 ms
223,744 KB
testcase_14 AC 251 ms
224,256 KB
testcase_15 AC 249 ms
224,000 KB
testcase_16 AC 251 ms
224,256 KB
testcase_17 AC 213 ms
193,408 KB
testcase_18 AC 45 ms
62,336 KB
testcase_19 AC 62 ms
79,232 KB
testcase_20 AC 136 ms
148,224 KB
testcase_21 AC 113 ms
130,432 KB
testcase_22 AC 193 ms
179,072 KB
testcase_23 AC 75 ms
89,216 KB
testcase_24 AC 94 ms
107,648 KB
testcase_25 AC 73 ms
89,856 KB
testcase_26 AC 129 ms
139,392 KB
testcase_27 AC 89 ms
102,656 KB
testcase_28 AC 121 ms
131,328 KB
testcase_29 AC 148 ms
148,736 KB
testcase_30 AC 189 ms
178,816 KB
testcase_31 AC 45 ms
62,208 KB
testcase_32 AC 82 ms
97,024 KB
testcase_33 AC 60 ms
76,416 KB
testcase_34 AC 83 ms
97,408 KB
testcase_35 AC 248 ms
223,744 KB
testcase_36 AC 79 ms
93,696 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