結果
問題 | No.9 モンスターのレベル上げ |
ユーザー | Kude |
提出日時 | 2020-09-03 08:01:36 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 503 bytes |
コンパイル時間 | 177 ms |
コンパイル使用メモリ | 82,272 KB |
実行使用メモリ | 124,232 KB |
最終ジャッジ日時 | 2024-05-02 06:37:16 |
合計ジャッジ時間 | 25,972 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 40 ms
53,100 KB |
testcase_01 | AC | 42 ms
52,804 KB |
testcase_02 | AC | 3,823 ms
121,072 KB |
testcase_03 | WA | - |
testcase_04 | AC | 1,601 ms
89,036 KB |
testcase_05 | WA | - |
testcase_06 | AC | 456 ms
78,136 KB |
testcase_07 | AC | 107 ms
75,944 KB |
testcase_08 | AC | 566 ms
79,332 KB |
testcase_09 | AC | 3,739 ms
120,656 KB |
testcase_10 | AC | 41 ms
52,956 KB |
testcase_11 | AC | 4,520 ms
119,940 KB |
testcase_12 | TLE | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
ソースコード
from heapq import heappush, heappop def solve(): n = int(input()) a = list(map(int, input().split())) b = list(map(int, input().split())) b = b + b ans = n for s in range(n): q = [] cnt = [0] * n for i, ai in enumerate(a): heappush(q, (ai, -1, i)) for j in range(s, s + n): ai, _, i = heappop(q) cnt[i] += 1 heappush(q, (ai + b[j] // 2, j, i)) ans = min(ans, max(cnt)) print(ans) solve()