結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,968 KB
testcase_01 AC 340 ms
243,440 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 438 ms
243,320 KB
testcase_05 AC 445 ms
242,944 KB
testcase_06 AC 37 ms
51,968 KB
testcase_07 AC 358 ms
243,060 KB
testcase_08 AC 451 ms
243,196 KB
testcase_09 AC 355 ms
243,328 KB
testcase_10 AC 430 ms
243,200 KB
testcase_11 AC 429 ms
243,060 KB
testcase_12 AC 435 ms
243,316 KB
testcase_13 AC 435 ms
243,204 KB
testcase_14 AC 435 ms
243,056 KB
testcase_15 AC 441 ms
242,816 KB
testcase_16 AC 437 ms
243,064 KB
testcase_17 AC 350 ms
243,200 KB
testcase_18 AC 104 ms
130,560 KB
testcase_19 AC 103 ms
123,392 KB
testcase_20 AC 230 ms
241,152 KB
testcase_21 AC 239 ms
243,072 KB
testcase_22 AC 304 ms
243,200 KB
testcase_23 AC 101 ms
123,392 KB
testcase_24 AC 129 ms
158,592 KB
testcase_25 AC 154 ms
190,336 KB
testcase_26 AC 256 ms
242,688 KB
testcase_27 AC 264 ms
243,200 KB
testcase_28 AC 190 ms
206,464 KB
testcase_29 AC 234 ms
240,640 KB
testcase_30 AC 289 ms
242,816 KB
testcase_31 AC 233 ms
243,256 KB
testcase_32 AC 128 ms
148,480 KB
testcase_33 AC 80 ms
100,736 KB
testcase_34 AC 156 ms
190,848 KB
testcase_35 AC 421 ms
242,816 KB
testcase_36 AC 121 ms
130,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K = map(int, input().split())
all = N*(N+1)//2
U = set()
D = set()
for i in range(1,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