結果

問題 No.2142 Segment Zero
ユーザー H20H20
提出日時 2022-12-02 21:56:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 440 ms / 2,000 ms
コード長 210 bytes
コンパイル時間 479 ms
コンパイル使用メモリ 82,040 KB
実行使用メモリ 243,448 KB
最終ジャッジ日時 2024-10-09 23:12:25
合計ジャッジ時間 11,448 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,968 KB
testcase_01 AC 347 ms
243,144 KB
testcase_02 AC 39 ms
51,968 KB
testcase_03 AC 342 ms
242,816 KB
testcase_04 AC 436 ms
243,444 KB
testcase_05 AC 418 ms
242,816 KB
testcase_06 AC 36 ms
52,096 KB
testcase_07 AC 345 ms
243,064 KB
testcase_08 AC 440 ms
242,928 KB
testcase_09 AC 351 ms
242,676 KB
testcase_10 AC 438 ms
243,448 KB
testcase_11 AC 435 ms
243,312 KB
testcase_12 AC 439 ms
243,196 KB
testcase_13 AC 438 ms
242,932 KB
testcase_14 AC 431 ms
243,056 KB
testcase_15 AC 432 ms
242,940 KB
testcase_16 AC 424 ms
243,060 KB
testcase_17 AC 358 ms
243,072 KB
testcase_18 AC 106 ms
130,560 KB
testcase_19 AC 104 ms
123,264 KB
testcase_20 AC 249 ms
241,024 KB
testcase_21 AC 236 ms
242,944 KB
testcase_22 AC 298 ms
242,816 KB
testcase_23 AC 100 ms
123,264 KB
testcase_24 AC 128 ms
158,720 KB
testcase_25 AC 157 ms
190,848 KB
testcase_26 AC 247 ms
242,944 KB
testcase_27 AC 265 ms
242,688 KB
testcase_28 AC 196 ms
206,336 KB
testcase_29 AC 231 ms
241,152 KB
testcase_30 AC 298 ms
242,944 KB
testcase_31 AC 237 ms
243,072 KB
testcase_32 AC 132 ms
148,224 KB
testcase_33 AC 81 ms
101,248 KB
testcase_34 AC 161 ms
190,976 KB
testcase_35 AC 422 ms
243,072 KB
testcase_36 AC 121 ms
130,304 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K = map(int, input().split())
all = N*(N+1)//2
U = set()
D = set()
for i in range(N+1):
    v = i*(i+1)//2
    U.add(v)
    D.add(all-v)
for u in U:
    if K-u in D:
        print(1)
        exit()
print(2)

0