結果

問題 No.9 モンスターのレベル上げ
ユーザー htkbhtkb
提出日時 2019-02-08 16:31:01
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,487 ms / 5,000 ms
コード長 385 bytes
コンパイル時間 78 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 11,136 KB
最終ジャッジ日時 2024-06-28 10:51:19
合計ジャッジ時間 14,426 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 31 ms
10,880 KB
testcase_02 AC 1,487 ms
11,008 KB
testcase_03 AC 1,153 ms
11,008 KB
testcase_04 AC 632 ms
11,008 KB
testcase_05 AC 436 ms
10,880 KB
testcase_06 AC 174 ms
10,880 KB
testcase_07 AC 32 ms
10,880 KB
testcase_08 AC 222 ms
10,880 KB
testcase_09 AC 1,432 ms
11,136 KB
testcase_10 AC 31 ms
10,880 KB
testcase_11 AC 1,363 ms
11,136 KB
testcase_12 AC 664 ms
10,880 KB
testcase_13 AC 1,263 ms
10,752 KB
testcase_14 AC 1,425 ms
11,136 KB
testcase_15 AC 1,297 ms
11,008 KB
testcase_16 AC 53 ms
10,752 KB
testcase_17 AC 856 ms
10,752 KB
testcase_18 AC 711 ms
10,752 KB
testcase_19 AC 43 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappushpop
N = int(input())
WEAKEST, *A = sorted(map(lambda x: int(x)*10000, input().split()))
B = list(map(lambda x: int(x)//2*10000+1, input().split()))
ans = 10**9

for i in range(N):
    a = A[:]
    weakest = WEAKEST
    for exp in B[i:] + B[:i]:
        weakest = heappushpop(a, weakest+exp)

    ans = min(ans, max(n % 10000 for n in a+[weakest]))

print(ans)
0