結果

問題 No.78 クジ付きアイスバー
ユーザー marchmarch
提出日時 2017-10-08 03:37:10
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 178 bytes
コンパイル時間 119 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 21,248 KB
最終ジャッジ日時 2024-11-17 04:53:24
合計ジャッジ時間 140,840 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
20,992 KB
testcase_01 AC 30 ms
17,312 KB
testcase_02 AC 30 ms
21,248 KB
testcase_03 AC 30 ms
20,864 KB
testcase_04 AC 30 ms
20,864 KB
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 AC 30 ms
20,736 KB
testcase_24 AC 30 ms
17,312 KB
testcase_25 AC 30 ms
20,992 KB
testcase_26 AC 30 ms
10,496 KB
testcase_27 AC 30 ms
10,496 KB
testcase_28 AC 30 ms
10,496 KB
testcase_29 AC 30 ms
10,496 KB
testcase_30 AC 30 ms
10,496 KB
testcase_31 AC 30 ms
10,496 KB
testcase_32 AC 41 ms
10,496 KB
testcase_33 AC 800 ms
10,368 KB
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = map(int, input().split())
S = input()
b = 1
i = 0
c = 0
while i < K - 1:
    c += int(S[i % N])
    i += 1
    if c == 0:
        b += 1
    else:
        c -= 1
print(b)
0