結果

問題 No.9 モンスターのレベル上げ
ユーザー takakintakakin
提出日時 2020-04-30 23:15:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,358 ms / 5,000 ms
コード長 411 bytes
コンパイル時間 499 ms
コンパイル使用メモリ 82,160 KB
実行使用メモリ 81,136 KB
最終ジャッジ日時 2024-12-17 22:00:10
合計ジャッジ時間 14,768 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
54,916 KB
testcase_01 AC 43 ms
54,708 KB
testcase_02 AC 1,274 ms
81,136 KB
testcase_03 AC 1,064 ms
80,324 KB
testcase_04 AC 660 ms
78,496 KB
testcase_05 AC 501 ms
78,120 KB
testcase_06 AC 280 ms
77,696 KB
testcase_07 AC 122 ms
77,540 KB
testcase_08 AC 327 ms
78,196 KB
testcase_09 AC 1,351 ms
80,980 KB
testcase_10 AC 42 ms
55,120 KB
testcase_11 AC 1,073 ms
80,528 KB
testcase_12 AC 1,136 ms
80,632 KB
testcase_13 AC 984 ms
80,260 KB
testcase_14 AC 1,358 ms
81,116 KB
testcase_15 AC 1,220 ms
80,868 KB
testcase_16 AC 162 ms
77,348 KB
testcase_17 AC 880 ms
79,692 KB
testcase_18 AC 743 ms
78,784 KB
testcase_19 AC 143 ms
77,808 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=lambda: sys.stdin.readline().rstrip()
n=int(input())
A=[int(i)*(10**4) for i in input().split()]
B=[int(i)//2 for i in input().split()]
import heapq
import copy
ans=n
for i in range(n):
  Q=copy.deepcopy(A)
  heapq.heapify(Q)
  for j in range(n):
    ind=i+j
    if ind>=n:
      ind%=n
    heapq.heappush(Q,heapq.heappop(Q)+B[ind]*(10**4)+1)

  ans=min(ans,max(q%10**4 for q in Q))
print(ans)
0