結果

問題 No.2142 Segment Zero
ユーザー vltmttvltmtt
提出日時 2022-12-02 22:39:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 323 ms / 2,000 ms
コード長 152 bytes
コンパイル時間 513 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 225,024 KB
最終ジャッジ日時 2024-10-10 00:16:16
合計ジャッジ時間 7,391 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,840 KB
testcase_01 AC 300 ms
224,640 KB
testcase_02 AC 39 ms
51,840 KB
testcase_03 AC 41 ms
51,960 KB
testcase_04 AC 271 ms
224,640 KB
testcase_05 AC 280 ms
224,512 KB
testcase_06 AC 38 ms
52,096 KB
testcase_07 AC 95 ms
102,628 KB
testcase_08 AC 293 ms
224,640 KB
testcase_09 AC 168 ms
159,744 KB
testcase_10 AC 323 ms
225,024 KB
testcase_11 AC 287 ms
224,512 KB
testcase_12 AC 284 ms
224,640 KB
testcase_13 AC 288 ms
225,024 KB
testcase_14 AC 283 ms
225,024 KB
testcase_15 AC 294 ms
224,768 KB
testcase_16 AC 281 ms
224,256 KB
testcase_17 AC 227 ms
193,536 KB
testcase_18 AC 46 ms
63,104 KB
testcase_19 AC 66 ms
79,872 KB
testcase_20 AC 150 ms
149,248 KB
testcase_21 AC 124 ms
130,944 KB
testcase_22 AC 202 ms
179,968 KB
testcase_23 AC 81 ms
89,984 KB
testcase_24 AC 101 ms
107,776 KB
testcase_25 AC 77 ms
89,984 KB
testcase_26 AC 145 ms
140,288 KB
testcase_27 AC 93 ms
102,400 KB
testcase_28 AC 130 ms
131,968 KB
testcase_29 AC 149 ms
148,608 KB
testcase_30 AC 204 ms
179,584 KB
testcase_31 AC 46 ms
62,336 KB
testcase_32 AC 87 ms
98,176 KB
testcase_33 AC 63 ms
77,184 KB
testcase_34 AC 87 ms
97,536 KB
testcase_35 AC 280 ms
224,000 KB
testcase_36 AC 83 ms
93,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k=map(int,input().split())
se=set([0])
kk=(n+1)*n//2-k
x=0
for i in range(1,n+1):
  x+=i
  se.add(x)
  if x-kk in se:
    print(1)
    exit()
print(2)
0