結果

問題 No.78 クジ付きアイスバー
ユーザー colognecologne
提出日時 2022-01-26 17:27:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 37 ms / 5,000 ms
コード長 464 bytes
コンパイル時間 393 ms
コンパイル使用メモリ 82,468 KB
実行使用メモリ 54,104 KB
最終ジャッジ日時 2024-06-02 12:05:47
合計ジャッジ時間 2,729 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
54,104 KB
testcase_01 AC 34 ms
52,560 KB
testcase_02 AC 33 ms
52,492 KB
testcase_03 AC 33 ms
52,748 KB
testcase_04 AC 33 ms
53,180 KB
testcase_05 AC 35 ms
52,868 KB
testcase_06 AC 34 ms
52,740 KB
testcase_07 AC 33 ms
52,692 KB
testcase_08 AC 34 ms
52,760 KB
testcase_09 AC 33 ms
52,356 KB
testcase_10 AC 33 ms
53,416 KB
testcase_11 AC 34 ms
52,072 KB
testcase_12 AC 34 ms
53,332 KB
testcase_13 AC 33 ms
52,968 KB
testcase_14 AC 34 ms
52,312 KB
testcase_15 AC 33 ms
53,084 KB
testcase_16 AC 34 ms
52,344 KB
testcase_17 AC 34 ms
52,396 KB
testcase_18 AC 33 ms
52,744 KB
testcase_19 AC 34 ms
52,608 KB
testcase_20 AC 32 ms
52,272 KB
testcase_21 AC 34 ms
52,152 KB
testcase_22 AC 34 ms
52,004 KB
testcase_23 AC 33 ms
53,868 KB
testcase_24 AC 34 ms
52,872 KB
testcase_25 AC 34 ms
52,968 KB
testcase_26 AC 37 ms
54,040 KB
testcase_27 AC 35 ms
52,124 KB
testcase_28 AC 34 ms
52,132 KB
testcase_29 AC 33 ms
52,868 KB
testcase_30 AC 34 ms
52,888 KB
testcase_31 AC 33 ms
51,936 KB
testcase_32 AC 34 ms
52,028 KB
testcase_33 AC 34 ms
52,004 KB
testcase_34 AC 34 ms
53,440 KB
testcase_35 AC 33 ms
52,396 KB
testcase_36 AC 32 ms
52,836 KB
testcase_37 AC 32 ms
52,272 KB
testcase_38 AC 32 ms
52,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys


def input(): return sys.stdin.readline().rstrip()


def main():
    N, K = map(int, input().split())
    S = input()

    s = sum(map(int, S))
    if s >= N:
        K = min(N, K)

    rep = max(0, (K - N) // N)
    ans = rep * (N - s)
    K -= N * rep

    cur = 0
    for i in range(K):
        if cur == 0:
            ans += 1
        else:
            cur -= 1
        cur += int(S[i % N])

    print(ans)


if __name__ == '__main__':
    main()
0