結果

問題 No.2142 Segment Zero
ユーザー vltmttvltmtt
提出日時 2022-12-02 22:34:55
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 152 bytes
コンパイル時間 168 ms
コンパイル使用メモリ 81,972 KB
実行使用メモリ 226,240 KB
最終ジャッジ日時 2024-10-10 00:10:11
合計ジャッジ時間 7,254 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,248 KB
testcase_01 WA -
testcase_02 AC 39 ms
52,428 KB
testcase_03 AC 38 ms
51,960 KB
testcase_04 AC 287 ms
224,920 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 153 ms
149,092 KB
testcase_10 AC 266 ms
225,504 KB
testcase_11 AC 272 ms
225,452 KB
testcase_12 AC 272 ms
225,264 KB
testcase_13 WA -
testcase_14 AC 265 ms
225,956 KB
testcase_15 AC 258 ms
226,240 KB
testcase_16 AC 263 ms
225,932 KB
testcase_17 AC 225 ms
193,920 KB
testcase_18 AC 46 ms
63,556 KB
testcase_19 WA -
testcase_20 AC 155 ms
150,216 KB
testcase_21 WA -
testcase_22 AC 200 ms
180,336 KB
testcase_23 AC 69 ms
80,460 KB
testcase_24 WA -
testcase_25 AC 68 ms
82,660 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 73 ms
86,776 KB
testcase_33 WA -
testcase_34 AC 83 ms
94,852 KB
testcase_35 WA -
testcase_36 AC 81 ms
95,164 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
  if kk-x in se:
    print(1)
    exit()
  se.add(x)
print(2)
0