結果

問題 No.78 クジ付きアイスバー
ユーザー colognecologne
提出日時 2022-01-26 17:26:13
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 471 bytes
コンパイル時間 205 ms
コンパイル使用メモリ 82,008 KB
実行使用メモリ 60,388 KB
最終ジャッジ日時 2024-06-02 12:04:40
合計ジャッジ時間 2,620 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 33 ms
52,224 KB
testcase_02 AC 33 ms
52,484 KB
testcase_03 AC 35 ms
52,332 KB
testcase_04 AC 33 ms
52,620 KB
testcase_05 AC 33 ms
53,108 KB
testcase_06 AC 33 ms
53,180 KB
testcase_07 AC 36 ms
53,360 KB
testcase_08 AC 35 ms
52,332 KB
testcase_09 AC 32 ms
52,836 KB
testcase_10 AC 34 ms
52,344 KB
testcase_11 AC 33 ms
53,176 KB
testcase_12 AC 35 ms
52,280 KB
testcase_13 AC 33 ms
52,620 KB
testcase_14 AC 35 ms
52,204 KB
testcase_15 AC 33 ms
53,080 KB
testcase_16 AC 34 ms
52,704 KB
testcase_17 AC 34 ms
52,884 KB
testcase_18 AC 33 ms
52,336 KB
testcase_19 AC 37 ms
59,752 KB
testcase_20 AC 37 ms
59,316 KB
testcase_21 AC 42 ms
60,388 KB
testcase_22 AC 42 ms
59,732 KB
testcase_23 AC 34 ms
52,872 KB
testcase_24 AC 34 ms
52,752 KB
testcase_25 AC 34 ms
52,960 KB
testcase_26 AC 34 ms
53,228 KB
testcase_27 AC 35 ms
52,800 KB
testcase_28 AC 35 ms
52,124 KB
testcase_29 AC 33 ms
52,396 KB
testcase_30 AC 34 ms
52,756 KB
testcase_31 AC 34 ms
52,284 KB
testcase_32 AC 38 ms
59,480 KB
testcase_33 AC 39 ms
59,360 KB
testcase_34 AC 41 ms
59,432 KB
testcase_35 AC 39 ms
58,380 KB
testcase_36 AC 38 ms
58,960 KB
testcase_37 AC 42 ms
60,032 KB
testcase_38 AC 35 ms
52,468 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, 50)

    rep = max(0, (K - 100 * 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