結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,880 KB
testcase_01 AC 26 ms
10,880 KB
testcase_02 AC 1,406 ms
11,136 KB
testcase_03 AC 1,022 ms
11,136 KB
testcase_04 AC 595 ms
11,008 KB
testcase_05 AC 442 ms
11,008 KB
testcase_06 AC 121 ms
11,008 KB
testcase_07 AC 30 ms
10,880 KB
testcase_08 AC 168 ms
11,008 KB
testcase_09 AC 1,230 ms
11,136 KB
testcase_10 AC 27 ms
10,880 KB
testcase_11 AC 1,393 ms
11,136 KB
testcase_12 WA -
testcase_13 AC 82 ms
11,136 KB
testcase_14 AC 1,197 ms
11,264 KB
testcase_15 AC 1,230 ms
11,136 KB
testcase_16 AC 43 ms
10,752 KB
testcase_17 AC 869 ms
11,008 KB
testcase_18 AC 724 ms
10,880 KB
testcase_19 AC 42 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

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
        mxlist[index] = am
        if am >= ans:
            break
        index += 1
        heapq.heappush(tmp, (bm << 8) + am)
    c -= 1
    ans = min(ans, max(mxlist))
    b.rotate(1)
print(ans)
0