結果

問題 No.2142 Segment Zero
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-11-25 14:38:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 95 ms / 2,000 ms
コード長 200 bytes
コンパイル時間 199 ms
コンパイル使用メモリ 82,580 KB
実行使用メモリ 61,268 KB
最終ジャッジ日時 2024-11-25 14:38:39
合計ジャッジ時間 3,154 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,760 KB
testcase_01 AC 45 ms
57,660 KB
testcase_02 AC 37 ms
51,940 KB
testcase_03 AC 43 ms
52,128 KB
testcase_04 AC 55 ms
59,500 KB
testcase_05 AC 56 ms
60,976 KB
testcase_06 AC 43 ms
52,452 KB
testcase_07 AC 56 ms
59,596 KB
testcase_08 AC 59 ms
61,000 KB
testcase_09 AC 50 ms
60,188 KB
testcase_10 AC 55 ms
60,716 KB
testcase_11 AC 55 ms
60,012 KB
testcase_12 AC 54 ms
59,880 KB
testcase_13 AC 54 ms
59,540 KB
testcase_14 AC 53 ms
59,596 KB
testcase_15 AC 53 ms
60,388 KB
testcase_16 AC 52 ms
61,040 KB
testcase_17 AC 52 ms
60,504 KB
testcase_18 AC 42 ms
58,772 KB
testcase_19 AC 45 ms
60,004 KB
testcase_20 AC 48 ms
59,744 KB
testcase_21 AC 46 ms
59,960 KB
testcase_22 AC 50 ms
60,948 KB
testcase_23 AC 44 ms
58,788 KB
testcase_24 AC 45 ms
59,432 KB
testcase_25 AC 45 ms
59,320 KB
testcase_26 AC 95 ms
59,748 KB
testcase_27 AC 46 ms
58,648 KB
testcase_28 AC 50 ms
60,856 KB
testcase_29 AC 49 ms
61,268 KB
testcase_30 AC 52 ms
59,708 KB
testcase_31 AC 42 ms
59,920 KB
testcase_32 AC 44 ms
59,560 KB
testcase_33 AC 42 ms
59,460 KB
testcase_34 AC 44 ms
59,116 KB
testcase_35 AC 55 ms
61,104 KB
testcase_36 AC 47 ms
61,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,K=map(int,input().split())
K=(n*(n+1))//2-K
s=1
r=1
for l in range(1,n+1):
  while r+1<=n and s<K:
    r+=1
    s+=r
  if s==K:
    print(1)
    exit()
  s-=l
  if l==r:
    r=l+1
    s=l+1
print(2)
0