結果

問題 No.2142 Segment Zero
ユーザー vltmttvltmtt
提出日時 2022-12-02 22:38:43
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 152 bytes
コンパイル時間 371 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 224,788 KB
最終ジャッジ日時 2024-10-10 00:15:29
合計ジャッジ時間 9,481 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
51,712 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 332 ms
224,612 KB
testcase_05 AC 323 ms
224,512 KB
testcase_06 AC 42 ms
51,840 KB
testcase_07 WA -
testcase_08 AC 321 ms
224,400 KB
testcase_09 WA -
testcase_10 AC 320 ms
224,788 KB
testcase_11 AC 319 ms
224,236 KB
testcase_12 AC 321 ms
224,768 KB
testcase_13 AC 321 ms
224,256 KB
testcase_14 AC 330 ms
224,384 KB
testcase_15 AC 318 ms
224,640 KB
testcase_16 AC 327 ms
224,256 KB
testcase_17 AC 268 ms
193,052 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 185 ms
149,120 KB
testcase_21 WA -
testcase_22 AC 244 ms
179,712 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 159 ms
131,712 KB
testcase_29 AC 179 ms
148,736 KB
testcase_30 AC 244 ms
179,456 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 321 ms
224,128 KB
testcase_36 AC 90 ms
93,952 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 kk+x in se:
    print(1)
    exit()
print(2)
0