結果

問題 No.78 クジ付きアイスバー
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2022-01-19 22:48:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 52 ms / 5,000 ms
コード長 791 bytes
コンパイル時間 220 ms
コンパイル使用メモリ 82,436 KB
実行使用メモリ 60,160 KB
最終ジャッジ日時 2024-11-23 14:06:54
合計ジャッジ時間 3,206 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
58,624 KB
testcase_01 AC 49 ms
59,264 KB
testcase_02 AC 49 ms
58,496 KB
testcase_03 AC 48 ms
58,880 KB
testcase_04 AC 46 ms
58,496 KB
testcase_05 AC 45 ms
58,496 KB
testcase_06 AC 49 ms
58,624 KB
testcase_07 AC 47 ms
58,624 KB
testcase_08 AC 46 ms
59,008 KB
testcase_09 AC 46 ms
59,008 KB
testcase_10 AC 45 ms
58,880 KB
testcase_11 AC 47 ms
59,392 KB
testcase_12 AC 47 ms
58,880 KB
testcase_13 AC 47 ms
59,264 KB
testcase_14 AC 45 ms
59,136 KB
testcase_15 AC 44 ms
58,752 KB
testcase_16 AC 45 ms
58,752 KB
testcase_17 AC 47 ms
60,160 KB
testcase_18 AC 45 ms
59,392 KB
testcase_19 AC 45 ms
59,392 KB
testcase_20 AC 44 ms
58,496 KB
testcase_21 AC 45 ms
58,792 KB
testcase_22 AC 46 ms
58,752 KB
testcase_23 AC 44 ms
58,880 KB
testcase_24 AC 45 ms
59,136 KB
testcase_25 AC 47 ms
59,776 KB
testcase_26 AC 44 ms
58,496 KB
testcase_27 AC 45 ms
58,880 KB
testcase_28 AC 48 ms
58,752 KB
testcase_29 AC 45 ms
58,880 KB
testcase_30 AC 46 ms
58,496 KB
testcase_31 AC 45 ms
59,264 KB
testcase_32 AC 46 ms
58,496 KB
testcase_33 AC 45 ms
58,752 KB
testcase_34 AC 46 ms
59,008 KB
testcase_35 AC 47 ms
58,880 KB
testcase_36 AC 46 ms
58,752 KB
testcase_37 AC 46 ms
58,496 KB
testcase_38 AC 45 ms
58,624 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