結果

問題 No.2142 Segment Zero
ユーザー ああいいああいい
提出日時 2022-12-04 15:53:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 298 ms / 2,000 ms
コード長 218 bytes
コンパイル時間 253 ms
コンパイル使用メモリ 81,868 KB
実行使用メモリ 224,768 KB
最終ジャッジ日時 2024-10-11 18:54:15
合計ジャッジ時間 6,882 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,224 KB
testcase_01 AC 269 ms
224,768 KB
testcase_02 AC 37 ms
51,584 KB
testcase_03 AC 37 ms
52,224 KB
testcase_04 AC 298 ms
224,512 KB
testcase_05 AC 232 ms
224,128 KB
testcase_06 AC 37 ms
51,584 KB
testcase_07 AC 92 ms
102,528 KB
testcase_08 AC 232 ms
224,768 KB
testcase_09 AC 145 ms
159,872 KB
testcase_10 AC 237 ms
224,512 KB
testcase_11 AC 230 ms
224,384 KB
testcase_12 AC 236 ms
224,768 KB
testcase_13 AC 229 ms
224,768 KB
testcase_14 AC 226 ms
224,256 KB
testcase_15 AC 229 ms
224,512 KB
testcase_16 AC 238 ms
224,512 KB
testcase_17 AC 192 ms
193,408 KB
testcase_18 AC 45 ms
62,464 KB
testcase_19 AC 62 ms
79,232 KB
testcase_20 AC 137 ms
149,176 KB
testcase_21 AC 118 ms
131,200 KB
testcase_22 AC 178 ms
180,056 KB
testcase_23 AC 73 ms
90,240 KB
testcase_24 AC 91 ms
107,904 KB
testcase_25 AC 74 ms
89,856 KB
testcase_26 AC 128 ms
140,416 KB
testcase_27 AC 89 ms
102,272 KB
testcase_28 AC 120 ms
132,096 KB
testcase_29 AC 133 ms
148,864 KB
testcase_30 AC 179 ms
179,456 KB
testcase_31 AC 44 ms
62,080 KB
testcase_32 AC 80 ms
97,920 KB
testcase_33 AC 60 ms
77,056 KB
testcase_34 AC 81 ms
97,920 KB
testcase_35 AC 224 ms
224,256 KB
testcase_36 AC 80 ms
93,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

S = N * (N + 1) // 2
L = S - K
s = set()
now = 0
s.add(now)
for i in range(1,N + 1):
    now += i
    if now - L in s:
        print(1)
        exit()
    s.add(now)
print(2)
0