結果

問題 No.1007 コイン集め
ユーザー kozykozy
提出日時 2021-05-08 23:54:22
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 388 bytes
コンパイル時間 89 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 21,832 KB
最終ジャッジ日時 2024-09-17 07:29:05
合計ジャッジ時間 2,508 ms
ジャッジサーバーID
(参考情報)
judge6 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,624 KB
testcase_01 AC 32 ms
10,752 KB
testcase_02 WA -
testcase_03 AC 31 ms
10,624 KB
testcase_04 AC 31 ms
10,752 KB
testcase_05 AC 31 ms
10,752 KB
testcase_06 AC 31 ms
10,752 KB
testcase_07 AC 31 ms
10,624 KB
testcase_08 AC 31 ms
10,752 KB
testcase_09 AC 30 ms
10,624 KB
testcase_10 AC 30 ms
10,752 KB
testcase_11 AC 31 ms
10,624 KB
testcase_12 AC 97 ms
21,828 KB
testcase_13 AC 94 ms
21,832 KB
testcase_14 AC 94 ms
21,576 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 96 ms
21,412 KB
testcase_19 AC 97 ms
21,668 KB
testcase_20 AC 99 ms
21,672 KB
testcase_21 AC 83 ms
21,412 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K=map(int,input().split())
K-=1
A=list(map(int,input().split()))
ans1=0
ans2=0
for i in range(K+1,N):
  if A[i]==0:
    break
  elif A[i]==1:
    ans1+=1
    break
  else:
    ans1+=A[i]
for i in range(K):
  if A[i]==0:
    break
  elif A[i]==1:
    ans2+=1
    break
  else:
    ans2+=A[i]
if A[K]==0:
  print(0)
elif A[K]==1:
  print(max(ans1,ans2)+A[K])
else:
  print(ans1+ans2+A[K])
0