結果
問題 | No.9 モンスターのレベル上げ |
ユーザー | aaaaaaaaaa2230 |
提出日時 | 2021-04-12 21:34:45 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 4,313 ms / 5,000 ms |
コード長 | 442 bytes |
コンパイル時間 | 227 ms |
コンパイル使用メモリ | 82,176 KB |
実行使用メモリ | 95,716 KB |
最終ジャッジ日時 | 2024-06-28 17:13:56 |
合計ジャッジ時間 | 32,862 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 43 ms
52,352 KB |
testcase_01 | AC | 42 ms
52,224 KB |
testcase_02 | AC | 3,104 ms
94,968 KB |
testcase_03 | AC | 2,490 ms
89,952 KB |
testcase_04 | AC | 1,322 ms
81,872 KB |
testcase_05 | AC | 918 ms
79,264 KB |
testcase_06 | AC | 385 ms
77,248 KB |
testcase_07 | AC | 96 ms
76,420 KB |
testcase_08 | AC | 474 ms
77,508 KB |
testcase_09 | AC | 3,081 ms
94,784 KB |
testcase_10 | AC | 40 ms
52,352 KB |
testcase_11 | AC | 2,730 ms
95,716 KB |
testcase_12 | AC | 4,313 ms
80,648 KB |
testcase_13 | AC | 3,167 ms
92,732 KB |
testcase_14 | AC | 3,086 ms
95,124 KB |
testcase_15 | AC | 2,822 ms
92,456 KB |
testcase_16 | AC | 140 ms
76,576 KB |
testcase_17 | AC | 1,829 ms
85,188 KB |
testcase_18 | AC | 1,514 ms
83,668 KB |
testcase_19 | AC | 120 ms
76,364 KB |
ソースコード
from heapq import heappush, heappop n = int(input()) A = list(map(int,input().split())) B = list(map(int,input().split())) ans = 10**10 base = [] for ind,a in enumerate(A): heappush(base, (a,0,ind)) for i in range(n): count = [0]*n h = base.copy() for j in range(n): a,num,ind = heappop(h) count[ind] += 1 a += B[(i+j)%n]//2 heappush(h, (a,num+1,ind)) ans = min(ans,max(count)) print(ans)