結果

問題 No.2142 Segment Zero
ユーザー k_s_y_3k_s_y_3
提出日時 2022-12-23 02:17:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 52 ms / 2,000 ms
コード長 283 bytes
コンパイル時間 274 ms
コンパイル使用メモリ 82,192 KB
実行使用メモリ 69,264 KB
最終ジャッジ日時 2024-11-18 03:53:43
合計ジャッジ時間 2,707 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
52,708 KB
testcase_01 AC 40 ms
65,992 KB
testcase_02 AC 31 ms
53,600 KB
testcase_03 AC 35 ms
64,656 KB
testcase_04 AC 49 ms
68,156 KB
testcase_05 AC 48 ms
68,040 KB
testcase_06 AC 30 ms
53,352 KB
testcase_07 AC 40 ms
67,968 KB
testcase_08 AC 51 ms
67,928 KB
testcase_09 AC 42 ms
68,120 KB
testcase_10 AC 50 ms
68,348 KB
testcase_11 AC 51 ms
68,576 KB
testcase_12 AC 52 ms
68,424 KB
testcase_13 AC 51 ms
68,232 KB
testcase_14 AC 49 ms
69,148 KB
testcase_15 AC 51 ms
68,984 KB
testcase_16 AC 51 ms
69,264 KB
testcase_17 AC 48 ms
67,112 KB
testcase_18 AC 36 ms
60,232 KB
testcase_19 AC 38 ms
61,444 KB
testcase_20 AC 45 ms
64,716 KB
testcase_21 AC 40 ms
64,208 KB
testcase_22 AC 46 ms
65,592 KB
testcase_23 AC 36 ms
60,960 KB
testcase_24 AC 37 ms
62,452 KB
testcase_25 AC 37 ms
62,356 KB
testcase_26 AC 39 ms
64,680 KB
testcase_27 AC 41 ms
64,932 KB
testcase_28 AC 44 ms
64,456 KB
testcase_29 AC 46 ms
64,456 KB
testcase_30 AC 47 ms
66,396 KB
testcase_31 AC 37 ms
64,564 KB
testcase_32 AC 38 ms
61,672 KB
testcase_33 AC 34 ms
59,576 KB
testcase_34 AC 38 ms
63,028 KB
testcase_35 AC 51 ms
68,516 KB
testcase_36 AC 41 ms
62,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K=map(int,input().split())

syaku=list(range(1,N+1))

l,r=0,0

tmp=(N*(N+1))//2
for l in range(N):
    while(True):
        if tmp==K:
            print(1)
            exit()
        if tmp<K or r>=N:
            break
        tmp-=syaku[r]
        r+=1
    tmp+=syaku[l]

print(2)
0