結果

問題 No.2142 Segment Zero
ユーザー roarisroaris
提出日時 2022-12-02 22:16:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 267 ms / 2,000 ms
コード長 241 bytes
コンパイル時間 195 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 226,816 KB
最終ジャッジ日時 2024-10-09 23:46:12
合計ジャッジ時間 7,562 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,504 KB
testcase_01 AC 260 ms
226,304 KB
testcase_02 AC 44 ms
53,504 KB
testcase_03 AC 41 ms
53,376 KB
testcase_04 AC 259 ms
226,688 KB
testcase_05 AC 258 ms
226,432 KB
testcase_06 AC 42 ms
54,016 KB
testcase_07 AC 92 ms
104,448 KB
testcase_08 AC 260 ms
226,304 KB
testcase_09 AC 164 ms
161,920 KB
testcase_10 AC 255 ms
226,424 KB
testcase_11 AC 266 ms
226,304 KB
testcase_12 AC 260 ms
226,176 KB
testcase_13 AC 264 ms
226,304 KB
testcase_14 AC 259 ms
226,816 KB
testcase_15 AC 264 ms
226,176 KB
testcase_16 AC 267 ms
226,176 KB
testcase_17 AC 213 ms
195,200 KB
testcase_18 AC 49 ms
64,512 KB
testcase_19 AC 68 ms
81,152 KB
testcase_20 AC 154 ms
150,400 KB
testcase_21 AC 118 ms
132,864 KB
testcase_22 AC 186 ms
181,632 KB
testcase_23 AC 78 ms
92,032 KB
testcase_24 AC 94 ms
110,080 KB
testcase_25 AC 75 ms
91,904 KB
testcase_26 AC 128 ms
142,080 KB
testcase_27 AC 90 ms
104,960 KB
testcase_28 AC 121 ms
133,632 KB
testcase_29 AC 144 ms
150,656 KB
testcase_30 AC 240 ms
181,760 KB
testcase_31 AC 48 ms
64,000 KB
testcase_32 AC 83 ms
99,328 KB
testcase_33 AC 64 ms
78,848 KB
testcase_34 AC 85 ms
100,096 KB
testcase_35 AC 244 ms
225,792 KB
testcase_36 AC 83 ms
95,488 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from collections import *

N, K = map(int, input().split())
s = {0}
acc = 0

for i in range(1, N+1):
    acc += i
    
    if acc-(N*(N+1)//2-K) in s:
        exit(print(1))
    
    s.add(acc)

print(2)
0