結果

問題 No.9 モンスターのレベル上げ
ユーザー ゆるくゆるく
提出日時 2014-10-12 05:55:12
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 650 bytes
コンパイル時間 114 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 11,264 KB
最終ジャッジ日時 2024-06-09 15:50:50
合計ジャッジ時間 10,669 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,752 KB
testcase_01 AC 27 ms
10,880 KB
testcase_02 AC 1,321 ms
11,136 KB
testcase_03 AC 987 ms
11,264 KB
testcase_04 WA -
testcase_05 AC 425 ms
11,008 KB
testcase_06 AC 114 ms
11,008 KB
testcase_07 AC 28 ms
11,008 KB
testcase_08 AC 164 ms
11,008 KB
testcase_09 AC 1,161 ms
11,264 KB
testcase_10 AC 26 ms
10,880 KB
testcase_11 AC 1,328 ms
11,136 KB
testcase_12 WA -
testcase_13 AC 76 ms
11,008 KB
testcase_14 WA -
testcase_15 AC 1,202 ms
11,136 KB
testcase_16 AC 39 ms
10,880 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq
from collections import deque
d = deque()
n = int(input())

a = []

for i in (input().split()):
    heapq.heappush(a,((int(i) << 8) + 0))
b = deque(list(map(int, input().split())))
c = n
ans = 0xFFFFFFFF

mxlist = [0] * n
while (c):
    tmp = list(a)
    mx = 0
    index = 0
    for bb in b:
        t = heapq.heappop(tmp)
        am = t & 0xFF
        bm = t >> 8
        bm += bb >> 1
        am += 1
        if am >= ans:
            break
        mxlist[index] = am
        index += 1
        heapq.heappush(tmp, (bm << 8) + am)
    c -= 1
    ans = min(ans, max(mxlist))
    b.rotate(1)
print(ans)
0