結果
問題 | No.9 モンスターのレベル上げ |
ユーザー | lloyz |
提出日時 | 2023-09-28 02:56:36 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 526 bytes |
コンパイル時間 | 235 ms |
コンパイル使用メモリ | 82,048 KB |
実行使用メモリ | 107,548 KB |
最終ジャッジ日時 | 2024-07-20 21:36:04 |
合計ジャッジ時間 | 33,973 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 43 ms
52,352 KB |
testcase_01 | AC | 43 ms
52,608 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 43 ms
52,352 KB |
testcase_11 | AC | 2,851 ms
103,128 KB |
testcase_12 | AC | 4,294 ms
80,472 KB |
testcase_13 | AC | 3,279 ms
99,256 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 1,844 ms
90,888 KB |
testcase_18 | AC | 1,528 ms
87,032 KB |
testcase_19 | WA | - |
ソースコード
from heapq import heapify, heappop, heappush import sys input = sys.stdin.readline n = int(input()) A = list(map(int, input().split())) B = list(map(int, input().split())) H = [] for i in range(n): H.append((A[i], 0, i)) heapify(H) ans = 10**18 for i in range(n): Hc = H[:] C = [0 for _ in range(n)] for j in range(n): ii = (i + j) % n cl, cc, ci = heappop(H) cc += 1 C[ci] = cc cl += B[ii] // 2 heappush(H, (cl, cc, ci)) ans = min(ans, max(C)) print(ans)