結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,216 KB
testcase_01 AC 278 ms
224,480 KB
testcase_02 AC 38 ms
53,012 KB
testcase_03 AC 269 ms
225,044 KB
testcase_04 AC 276 ms
226,168 KB
testcase_05 AC 256 ms
224,428 KB
testcase_06 AC 38 ms
52,956 KB
testcase_07 AC 259 ms
224,300 KB
testcase_08 AC 266 ms
224,356 KB
testcase_09 AC 271 ms
224,624 KB
testcase_10 AC 259 ms
225,588 KB
testcase_11 AC 253 ms
224,668 KB
testcase_12 AC 251 ms
224,560 KB
testcase_13 AC 252 ms
225,428 KB
testcase_14 AC 256 ms
225,528 KB
testcase_15 AC 265 ms
224,564 KB
testcase_16 AC 269 ms
224,796 KB
testcase_17 AC 209 ms
194,200 KB
testcase_18 AC 83 ms
95,464 KB
testcase_19 AC 79 ms
90,672 KB
testcase_20 AC 136 ms
149,700 KB
testcase_21 AC 163 ms
160,968 KB
testcase_22 AC 192 ms
179,936 KB
testcase_23 AC 78 ms
90,292 KB
testcase_24 AC 99 ms
109,484 KB
testcase_25 AC 108 ms
125,084 KB
testcase_26 AC 174 ms
180,124 KB
testcase_27 AC 187 ms
180,772 KB
testcase_28 AC 120 ms
132,164 KB
testcase_29 AC 136 ms
148,928 KB
testcase_30 AC 180 ms
180,608 KB
testcase_31 AC 184 ms
171,284 KB
testcase_32 AC 93 ms
104,456 KB
testcase_33 AC 65 ms
79,448 KB
testcase_34 AC 109 ms
125,464 KB
testcase_35 AC 259 ms
224,096 KB
testcase_36 AC 80 ms
94,252 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 998244353


def main():
    import sys
    input = sys.stdin.readline
    
    N, K = map(int, input().split())
    
    ans = 2
    R = {0}
    r = 0
    for i in range(N, 0, -1):
        r += i
        R.add(r)
    l = 0
    if K in R:
        ans = 1
    for i in range(1, N+1):
        l += i
        if K - l in R:
            ans = 1
    print(ans)


if __name__ == '__main__':
    main()
0