結果

問題 No.2142 Segment Zero
ユーザー timitimi
提出日時 2022-12-03 18:19:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 66 ms / 2,000 ms
コード長 198 bytes
コンパイル時間 1,373 ms
コンパイル使用メモリ 81,776 KB
実行使用メモリ 68,096 KB
最終ジャッジ日時 2024-10-10 21:07:06
合計ジャッジ時間 3,740 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,224 KB
testcase_01 AC 55 ms
65,536 KB
testcase_02 AC 40 ms
51,968 KB
testcase_03 AC 48 ms
64,896 KB
testcase_04 AC 64 ms
67,968 KB
testcase_05 AC 64 ms
67,712 KB
testcase_06 AC 41 ms
52,340 KB
testcase_07 AC 53 ms
66,944 KB
testcase_08 AC 66 ms
67,712 KB
testcase_09 AC 57 ms
67,200 KB
testcase_10 AC 63 ms
67,840 KB
testcase_11 AC 63 ms
67,968 KB
testcase_12 AC 64 ms
67,712 KB
testcase_13 AC 63 ms
68,096 KB
testcase_14 AC 65 ms
67,712 KB
testcase_15 AC 63 ms
67,580 KB
testcase_16 AC 63 ms
68,052 KB
testcase_17 AC 62 ms
66,560 KB
testcase_18 AC 46 ms
59,904 KB
testcase_19 AC 51 ms
60,544 KB
testcase_20 AC 59 ms
64,128 KB
testcase_21 AC 54 ms
64,000 KB
testcase_22 AC 61 ms
65,408 KB
testcase_23 AC 49 ms
60,288 KB
testcase_24 AC 52 ms
61,312 KB
testcase_25 AC 53 ms
61,952 KB
testcase_26 AC 54 ms
64,384 KB
testcase_27 AC 54 ms
64,768 KB
testcase_28 AC 57 ms
63,744 KB
testcase_29 AC 57 ms
64,128 KB
testcase_30 AC 60 ms
65,792 KB
testcase_31 AC 50 ms
64,128 KB
testcase_32 AC 52 ms
61,184 KB
testcase_33 AC 46 ms
58,752 KB
testcase_34 AC 51 ms
61,952 KB
testcase_35 AC 63 ms
67,456 KB
testcase_36 AC 54 ms
61,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K=map(int, input().split())
A=[i for i in range(1,N+1)]
r=0
c=0
KK=(1+N)*N//2-K
for l in range(N):
  while r<N and c<KK:
    c+=A[r]
    r+=1
  if c==KK:
    print(1)
    exit()
  c-=A[l]
print(2)
0