結果

問題 No.2142 Segment Zero
ユーザー shobonvipshobonvip
提出日時 2022-12-02 21:46:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 726 ms / 2,000 ms
コード長 311 bytes
コンパイル時間 374 ms
コンパイル使用メモリ 82,260 KB
実行使用メモリ 254,208 KB
最終ジャッジ日時 2024-10-09 22:55:19
合計ジャッジ時間 19,002 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
54,016 KB
testcase_01 AC 720 ms
253,768 KB
testcase_02 AC 43 ms
53,376 KB
testcase_03 AC 701 ms
253,744 KB
testcase_04 AC 706 ms
253,708 KB
testcase_05 AC 719 ms
253,680 KB
testcase_06 AC 43 ms
53,504 KB
testcase_07 AC 715 ms
253,856 KB
testcase_08 AC 716 ms
253,792 KB
testcase_09 AC 716 ms
253,776 KB
testcase_10 AC 717 ms
253,748 KB
testcase_11 AC 726 ms
253,760 KB
testcase_12 AC 723 ms
253,720 KB
testcase_13 AC 715 ms
253,852 KB
testcase_14 AC 719 ms
253,976 KB
testcase_15 AC 716 ms
253,912 KB
testcase_16 AC 725 ms
253,812 KB
testcase_17 AC 603 ms
253,012 KB
testcase_18 AC 165 ms
139,136 KB
testcase_19 AC 152 ms
131,456 KB
testcase_20 AC 405 ms
247,392 KB
testcase_21 AC 442 ms
250,520 KB
testcase_22 AC 541 ms
253,184 KB
testcase_23 AC 143 ms
130,688 KB
testcase_24 AC 224 ms
168,992 KB
testcase_25 AC 261 ms
190,404 KB
testcase_26 AC 537 ms
252,160 KB
testcase_27 AC 543 ms
254,208 KB
testcase_28 AC 313 ms
218,752 KB
testcase_29 AC 399 ms
247,268 KB
testcase_30 AC 546 ms
252,368 KB
testcase_31 AC 489 ms
252,800 KB
testcase_32 AC 204 ms
158,232 KB
testcase_33 AC 107 ms
108,416 KB
testcase_34 AC 274 ms
203,448 KB
testcase_35 AC 670 ms
253,760 KB
testcase_36 AC 154 ms
138,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

n,k = map(int,input().split())
k = n*(n+1)//2 - k
d = defaultdict(int)
for i in range(1, n+1):
	d[i*i - i] = i
# r(r+1) - l(l-1) = 2k
# (r^2+r) - (l^2-l) = 2k
# r^2+r = 2k + (l^2-l)

ans = 2
for i in range(1, n+1):
	t = i*i + i - 2*k
	if 0 < d[t] <= i:
		ans = 1

print(ans)
0