結果

問題 No.78 クジ付きアイスバー
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2022-01-19 22:48:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 53 ms / 5,000 ms
コード長 791 bytes
コンパイル時間 482 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 59,776 KB
最終ジャッジ日時 2024-05-02 20:01:13
合計ジャッジ時間 3,514 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
58,752 KB
testcase_01 AC 49 ms
58,624 KB
testcase_02 AC 48 ms
58,624 KB
testcase_03 AC 49 ms
58,752 KB
testcase_04 AC 48 ms
58,752 KB
testcase_05 AC 48 ms
58,752 KB
testcase_06 AC 53 ms
58,752 KB
testcase_07 AC 53 ms
58,624 KB
testcase_08 AC 49 ms
59,264 KB
testcase_09 AC 49 ms
59,008 KB
testcase_10 AC 48 ms
58,496 KB
testcase_11 AC 50 ms
59,648 KB
testcase_12 AC 47 ms
58,880 KB
testcase_13 AC 48 ms
58,880 KB
testcase_14 AC 48 ms
58,624 KB
testcase_15 AC 49 ms
58,496 KB
testcase_16 AC 49 ms
58,880 KB
testcase_17 AC 53 ms
59,648 KB
testcase_18 AC 50 ms
58,880 KB
testcase_19 AC 49 ms
58,752 KB
testcase_20 AC 47 ms
59,008 KB
testcase_21 AC 49 ms
58,752 KB
testcase_22 AC 49 ms
58,752 KB
testcase_23 AC 48 ms
58,624 KB
testcase_24 AC 49 ms
58,496 KB
testcase_25 AC 50 ms
59,776 KB
testcase_26 AC 48 ms
58,752 KB
testcase_27 AC 47 ms
58,752 KB
testcase_28 AC 48 ms
58,624 KB
testcase_29 AC 47 ms
58,752 KB
testcase_30 AC 50 ms
58,624 KB
testcase_31 AC 48 ms
58,880 KB
testcase_32 AC 50 ms
58,624 KB
testcase_33 AC 48 ms
58,752 KB
testcase_34 AC 50 ms
58,752 KB
testcase_35 AC 48 ms
58,496 KB
testcase_36 AC 48 ms
58,624 KB
testcase_37 AC 47 ms
58,752 KB
testcase_38 AC 47 ms
58,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k = map(int,input().split())
A = list(map(int,input()))

inf = 10**10
doubling = [[0]*55 for i in range(33)]
for i in range(n):
    bar = 1
    count = 0
    now = i
    while bar:
        count += 1
        if count == 100:
            break
        bar += A[now]-1
        now += 1
        now %= n
    if count == 100:
        doubling[0][i] = inf
    else:
        doubling[0][i] = count


for i in range(1,33):
    for j in range(50):
        nex = (doubling[i-1][j]+j)%n
        doubling[i][j] = doubling[i-1][j]+doubling[i-1][nex]
        doubling[i][j] = min(doubling[i][j],inf)

ans = 0
now = 0
for i in range(33)[::-1]:
    if k >= doubling[i][now]:
        k -= doubling[i][now]
        ans += 1<<i
        now += doubling[i][now]
        now %= n

if k:
    ans += 1
print(ans)
0