結果

問題 No.78 クジ付きアイスバー
ユーザー H20H20
提出日時 2021-06-16 10:09:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 38 ms / 5,000 ms
コード長 564 bytes
コンパイル時間 603 ms
コンパイル使用メモリ 82,244 KB
実行使用メモリ 53,432 KB
最終ジャッジ日時 2024-06-09 12:26:19
合計ジャッジ時間 3,335 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,236 KB
testcase_01 AC 33 ms
52,544 KB
testcase_02 AC 33 ms
53,320 KB
testcase_03 AC 31 ms
52,992 KB
testcase_04 AC 31 ms
53,200 KB
testcase_05 AC 31 ms
52,136 KB
testcase_06 AC 31 ms
51,836 KB
testcase_07 AC 33 ms
52,056 KB
testcase_08 AC 32 ms
52,700 KB
testcase_09 AC 30 ms
53,280 KB
testcase_10 AC 30 ms
52,992 KB
testcase_11 AC 31 ms
51,668 KB
testcase_12 AC 30 ms
53,432 KB
testcase_13 AC 30 ms
53,296 KB
testcase_14 AC 30 ms
52,172 KB
testcase_15 AC 31 ms
51,832 KB
testcase_16 AC 32 ms
51,944 KB
testcase_17 AC 31 ms
53,124 KB
testcase_18 AC 31 ms
51,892 KB
testcase_19 AC 30 ms
53,136 KB
testcase_20 AC 32 ms
51,788 KB
testcase_21 AC 35 ms
52,008 KB
testcase_22 AC 33 ms
51,860 KB
testcase_23 AC 31 ms
52,812 KB
testcase_24 AC 31 ms
52,752 KB
testcase_25 AC 33 ms
52,420 KB
testcase_26 AC 32 ms
52,492 KB
testcase_27 AC 36 ms
52,616 KB
testcase_28 AC 36 ms
52,492 KB
testcase_29 AC 32 ms
52,312 KB
testcase_30 AC 31 ms
52,592 KB
testcase_31 AC 31 ms
52,344 KB
testcase_32 AC 32 ms
51,840 KB
testcase_33 AC 32 ms
52,704 KB
testcase_34 AC 33 ms
52,424 KB
testcase_35 AC 31 ms
52,192 KB
testcase_36 AC 31 ms
53,136 KB
testcase_37 AC 31 ms
52,256 KB
testcase_38 AC 31 ms
52,188 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K = map(int,input().split())
S = list(input())
temp = 0
for i in range(N):
    if S[i]=='2':
        S[i]='1'
        temp+=1
    elif S[i]=='0' and temp>0:
        S[i]='1'
        temp-=1
if K==1:
    print(1)
elif N==1:
    if S[0]=='0':
        print(K)
    else:
        print(1)
elif N<K:
    ans=1
    ans+=S.count('0')
    for i in range(N):
        if S[i]=='0' and temp>0:
            S[i]='1'
            temp-=1
    K-=N+1
    ans+=(K//N)*S.count('0')
    if K%N>0:
        ans+=S[:K%N].count('0')
    print(ans)
else:
    print(1+S[:K-1].count('0'))
0