結果

問題 No.2142 Segment Zero
ユーザー flygonflygon
提出日時 2022-12-02 21:52:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 548 ms / 2,000 ms
コード長 343 bytes
コンパイル時間 620 ms
コンパイル使用メモリ 82,400 KB
実行使用メモリ 245,656 KB
最終ジャッジ日時 2024-10-09 23:06:59
合計ジャッジ時間 12,620 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,840 KB
testcase_01 AC 451 ms
245,024 KB
testcase_02 AC 39 ms
52,608 KB
testcase_03 AC 440 ms
245,656 KB
testcase_04 AC 443 ms
245,020 KB
testcase_05 AC 450 ms
245,480 KB
testcase_06 AC 37 ms
52,096 KB
testcase_07 AC 436 ms
245,012 KB
testcase_08 AC 426 ms
245,520 KB
testcase_09 AC 446 ms
245,268 KB
testcase_10 AC 548 ms
245,644 KB
testcase_11 AC 430 ms
245,152 KB
testcase_12 AC 434 ms
245,264 KB
testcase_13 AC 441 ms
245,260 KB
testcase_14 AC 442 ms
245,264 KB
testcase_15 AC 447 ms
245,352 KB
testcase_16 AC 447 ms
245,144 KB
testcase_17 AC 370 ms
238,592 KB
testcase_18 AC 127 ms
136,444 KB
testcase_19 AC 124 ms
128,512 KB
testcase_20 AC 246 ms
242,944 KB
testcase_21 AC 277 ms
243,328 KB
testcase_22 AC 314 ms
245,632 KB
testcase_23 AC 122 ms
128,768 KB
testcase_24 AC 161 ms
166,016 KB
testcase_25 AC 183 ms
198,400 KB
testcase_26 AC 310 ms
244,736 KB
testcase_27 AC 316 ms
245,120 KB
testcase_28 AC 208 ms
214,912 KB
testcase_29 AC 249 ms
242,560 KB
testcase_30 AC 309 ms
244,736 KB
testcase_31 AC 305 ms
244,864 KB
testcase_32 AC 147 ms
154,624 KB
testcase_33 AC 91 ms
104,960 KB
testcase_34 AC 185 ms
199,168 KB
testcase_35 AC 418 ms
244,996 KB
testcase_36 AC 123 ms
135,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k = map(int,input().split())

a = [i for i in range(n+1)]
b = [n-i for i in range(n+1)]
sa = set([0])
sb = set([n])
flg = 0
for i in range(1,n+1): 
  a[i] += a[i-1]
  b[i] += b[i-1]
  sa.add(a[i])  
  sb.add(b[i])  

for i in range(1,n+1):
  if a[i] == k or a[i] == (n+1)*n//2 - k or k-a[i] in sb:
    flg = 1


print(1) if flg else print(2)
0