結果

問題 No.1007 コイン集め
ユーザー hedwig100hedwig100
提出日時 2020-04-06 14:03:30
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 1,213 bytes
コンパイル時間 103 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 21,804 KB
最終ジャッジ日時 2024-07-06 05:57:01
合計ジャッジ時間 2,136 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 23 ms
10,752 KB
testcase_01 AC 24 ms
10,880 KB
testcase_02 AC 25 ms
10,880 KB
testcase_03 AC 24 ms
10,880 KB
testcase_04 AC 23 ms
10,752 KB
testcase_05 AC 23 ms
10,752 KB
testcase_06 AC 23 ms
10,752 KB
testcase_07 WA -
testcase_08 AC 23 ms
10,880 KB
testcase_09 AC 23 ms
10,880 KB
testcase_10 AC 23 ms
10,752 KB
testcase_11 AC 23 ms
10,752 KB
testcase_12 AC 60 ms
21,604 KB
testcase_13 AC 60 ms
21,788 KB
testcase_14 AC 64 ms
21,608 KB
testcase_15 WA -
testcase_16 AC 40 ms
13,072 KB
testcase_17 AC 41 ms
13,192 KB
testcase_18 AC 61 ms
21,620 KB
testcase_19 AC 53 ms
21,804 KB
testcase_20 AC 61 ms
21,620 KB
testcase_21 AC 56 ms
21,748 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 10 ** 9 + 7
INF = 10 ** 10
import sys
sys.setrecursionlimit(100000000)
dy = (-1,0,1,0)
dx = (0,1,0,-1)

def main():
    n,k = map(int,input().split())
    a = list(map(int,input().split()))
    k -= 1

    if a[k] == 0:
        print(0)
        return 
    
    if a[k] == 1:
        tmp1 = 0
        for i in range(k + 1,n):
            if a[i] > 1:
                tmp1 += a[i]
            else:
                tmp1 += 1
                break
        
        tmp2 = 0
        for i in range(k - 1,-1,-1):
            if a[i] > 1:
                tmp2 += a[i]
            else:
                tmp2 += 1
                break
        
        ans = max(tmp1,tmp2) + 1
        print(ans)
        return
    
    if a[k] > 1:
        tmp1 = 0
        for i in range(k + 1,n):
            if a[i] > 1:
                tmp1 += a[i]
            else:
                tmp1 += 1
                break
        
        tmp2 = 0
        for i in range(k - 1,-1,-1):
            if a[i] > 1:
                tmp2 += a[i]
            else:
                tmp2 += 1
                break
        
        ans = tmp1 + tmp2 + a[k]
        print(ans)
        return
            
if __name__ =='__main__':
    main()  
0