結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,624 KB
testcase_01 WA -
testcase_02 AC 28 ms
10,624 KB
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 26 ms
10,624 KB
testcase_11 AC 26 ms
10,624 KB
testcase_12 AC 84 ms
21,700 KB
testcase_13 AC 80 ms
21,700 KB
testcase_14 AC 81 ms
21,704 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 84 ms
21,544 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 71 ms
21,676 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K=map(int,input().split())
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