結果

問題 No.2142 Segment Zero
ユーザー tassei903tassei903
提出日時 2022-12-02 22:03:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 317 ms / 2,000 ms
コード長 571 bytes
コンパイル時間 373 ms
コンパイル使用メモリ 82,208 KB
実行使用メモリ 84,048 KB
最終ジャッジ日時 2024-10-09 23:32:33
合計ジャッジ時間 5,981 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,096 KB
testcase_01 AC 158 ms
83,520 KB
testcase_02 AC 38 ms
52,096 KB
testcase_03 AC 48 ms
65,792 KB
testcase_04 AC 317 ms
84,048 KB
testcase_05 AC 315 ms
83,524 KB
testcase_06 AC 39 ms
52,096 KB
testcase_07 AC 96 ms
83,572 KB
testcase_08 AC 170 ms
83,688 KB
testcase_09 AC 126 ms
83,232 KB
testcase_10 AC 163 ms
83,480 KB
testcase_11 AC 172 ms
83,456 KB
testcase_12 AC 165 ms
83,328 KB
testcase_13 AC 168 ms
83,504 KB
testcase_14 AC 168 ms
83,480 KB
testcase_15 AC 164 ms
83,432 KB
testcase_16 AC 169 ms
83,456 KB
testcase_17 AC 150 ms
82,560 KB
testcase_18 AC 59 ms
77,312 KB
testcase_19 AC 80 ms
77,404 KB
testcase_20 AC 117 ms
79,872 KB
testcase_21 AC 131 ms
80,632 KB
testcase_22 AC 127 ms
81,520 KB
testcase_23 AC 75 ms
77,320 KB
testcase_24 AC 90 ms
77,952 KB
testcase_25 AC 83 ms
78,592 KB
testcase_26 AC 119 ms
81,236 KB
testcase_27 AC 102 ms
81,408 KB
testcase_28 AC 114 ms
79,488 KB
testcase_29 AC 118 ms
79,988 KB
testcase_30 AC 137 ms
81,280 KB
testcase_31 AC 59 ms
80,896 KB
testcase_32 AC 96 ms
78,336 KB
testcase_33 AC 69 ms
76,800 KB
testcase_34 AC 88 ms
78,848 KB
testcase_35 AC 156 ms
83,300 KB
testcase_36 AC 90 ms
77,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES")
no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO")
#######################################################################

n, k = na()
k = n * (n+1)//2-k

f = [i*(i+1)//2 for i in range(n+1)]
from bisect import bisect_left as bl
for i in range(n+1):
    j = bl(f, f[i] - k)
    if f[i] - k == f[j]:
        print(1)
        exit()
print(2)
0