結果

問題 No.9 モンスターのレベル上げ
ユーザー H3PO4H3PO4
提出日時 2020-04-19 09:01:13
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 2,455 ms / 5,000 ms
コード長 374 bytes
コンパイル時間 91 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-10-04 13:41:03
合計ジャッジ時間 24,322 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,624 KB
testcase_01 AC 27 ms
10,752 KB
testcase_02 AC 2,421 ms
11,008 KB
testcase_03 AC 1,922 ms
11,008 KB
testcase_04 AC 998 ms
10,880 KB
testcase_05 AC 718 ms
10,752 KB
testcase_06 AC 262 ms
10,752 KB
testcase_07 AC 32 ms
10,624 KB
testcase_08 AC 353 ms
10,752 KB
testcase_09 AC 2,444 ms
10,880 KB
testcase_10 AC 30 ms
10,624 KB
testcase_11 AC 2,264 ms
10,880 KB
testcase_12 AC 2,455 ms
10,880 KB
testcase_13 AC 2,125 ms
10,880 KB
testcase_14 AC 2,332 ms
10,880 KB
testcase_15 AC 2,184 ms
10,880 KB
testcase_16 AC 64 ms
10,624 KB
testcase_17 AC 1,389 ms
11,008 KB
testcase_18 AC 1,156 ms
10,880 KB
testcase_19 AC 47 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq

N = int(input())
A = tuple(map(int, input().split()))
B = tuple(map(int, input().split())) * 2

ans = float('inf')
for i in range(N):
    heapq.heapify(h := [a * 10000 for a in A])
    for j in range(N):
        x = heapq.heappop(h)
        x += (B[i + j] // 2) * 10000 + 1
        heapq.heappush(h, x)
    ans = min(ans, max(a % 10000 for a in h))
print(ans)
0