結果

問題 No.2142 Segment Zero
ユーザー rlangevinrlangevin
提出日時 2023-04-14 12:21:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 376 ms / 2,000 ms
コード長 220 bytes
コンパイル時間 404 ms
コンパイル使用メモリ 82,324 KB
実行使用メモリ 245,044 KB
最終ジャッジ日時 2024-10-10 04:47:14
合計ジャッジ時間 10,114 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,292 KB
testcase_01 AC 290 ms
243,200 KB
testcase_02 AC 35 ms
52,212 KB
testcase_03 AC 295 ms
244,316 KB
testcase_04 AC 363 ms
243,804 KB
testcase_05 AC 357 ms
243,740 KB
testcase_06 AC 35 ms
52,616 KB
testcase_07 AC 300 ms
243,884 KB
testcase_08 AC 376 ms
244,128 KB
testcase_09 AC 296 ms
244,432 KB
testcase_10 AC 366 ms
243,340 KB
testcase_11 AC 356 ms
244,576 KB
testcase_12 AC 361 ms
244,564 KB
testcase_13 AC 363 ms
244,276 KB
testcase_14 AC 358 ms
243,500 KB
testcase_15 AC 369 ms
245,044 KB
testcase_16 AC 372 ms
244,488 KB
testcase_17 AC 309 ms
243,772 KB
testcase_18 AC 105 ms
131,104 KB
testcase_19 AC 102 ms
124,700 KB
testcase_20 AC 210 ms
240,908 KB
testcase_21 AC 222 ms
244,668 KB
testcase_22 AC 268 ms
245,044 KB
testcase_23 AC 96 ms
124,032 KB
testcase_24 AC 124 ms
158,708 KB
testcase_25 AC 153 ms
190,832 KB
testcase_26 AC 235 ms
244,516 KB
testcase_27 AC 241 ms
243,624 KB
testcase_28 AC 184 ms
207,196 KB
testcase_29 AC 225 ms
240,888 KB
testcase_30 AC 277 ms
243,696 KB
testcase_31 AC 213 ms
243,072 KB
testcase_32 AC 122 ms
149,776 KB
testcase_33 AC 76 ms
102,852 KB
testcase_34 AC 155 ms
192,160 KB
testcase_35 AC 364 ms
243,832 KB
testcase_36 AC 111 ms
131,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = map(int, input().split())
S, SS = set(), set()
for i in range(N + 1):
    S.add(i * (i + 1)//2)
    SS.add(N * (N + 1)//2 - i * (i + 1)//2)

for s in S:
    if K - s in SS:
        print(1)
        exit()
print(2)
0