結果

問題 No.2142 Segment Zero
ユーザー とりゐとりゐ
提出日時 2022-12-02 21:48:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 236 ms / 2,000 ms
コード長 174 bytes
コンパイル時間 378 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 225,280 KB
最終ジャッジ日時 2024-10-09 23:01:33
合計ジャッジ時間 6,588 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,584 KB
testcase_01 AC 228 ms
224,384 KB
testcase_02 AC 37 ms
52,096 KB
testcase_03 AC 41 ms
51,712 KB
testcase_04 AC 234 ms
225,152 KB
testcase_05 AC 234 ms
224,640 KB
testcase_06 AC 37 ms
51,584 KB
testcase_07 AC 90 ms
102,656 KB
testcase_08 AC 224 ms
225,024 KB
testcase_09 AC 149 ms
160,256 KB
testcase_10 AC 231 ms
224,256 KB
testcase_11 AC 232 ms
224,640 KB
testcase_12 AC 228 ms
224,384 KB
testcase_13 AC 232 ms
224,768 KB
testcase_14 AC 231 ms
224,384 KB
testcase_15 AC 231 ms
224,640 KB
testcase_16 AC 236 ms
225,280 KB
testcase_17 AC 189 ms
193,536 KB
testcase_18 AC 45 ms
62,592 KB
testcase_19 AC 64 ms
79,872 KB
testcase_20 AC 140 ms
149,120 KB
testcase_21 AC 119 ms
131,840 KB
testcase_22 AC 178 ms
179,968 KB
testcase_23 AC 78 ms
90,624 KB
testcase_24 AC 97 ms
107,776 KB
testcase_25 AC 77 ms
90,112 KB
testcase_26 AC 129 ms
140,288 KB
testcase_27 AC 91 ms
102,912 KB
testcase_28 AC 123 ms
131,968 KB
testcase_29 AC 137 ms
149,120 KB
testcase_30 AC 173 ms
179,840 KB
testcase_31 AC 45 ms
62,848 KB
testcase_32 AC 82 ms
97,920 KB
testcase_33 AC 61 ms
77,184 KB
testcase_34 AC 87 ms
98,304 KB
testcase_35 AC 231 ms
224,128 KB
testcase_36 AC 79 ms
94,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k=map(int,input().split())
s=set()
s.add(0)
tmp=0
m=n*(n+1)//2-k
for i in range(1,n+1):
  tmp+=i
  s.add(tmp)
  if tmp-m in s:
    print(1)
    exit()
  s.add(tmp)
print(2)
0