結果

問題 No.9 モンスターのレベル上げ
ユーザー szkhtsszkhts
提出日時 2022-04-10 09:43:51
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
実行時間 -
コード長 522 bytes
コンパイル時間 664 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 22,656 KB
最終ジャッジ日時 2024-11-30 16:34:20
合計ジャッジ時間 86,509 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
22,400 KB
testcase_01 AC 27 ms
22,272 KB
testcase_02 TLE -
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 WA -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 AC 28 ms
22,528 KB
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 WA -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import copy

n = int(input())

allies = map(int, input().split())
enemies = list(map(int, input().split()))

allies_mon = []
for i in allies:
    allies_mon.append([i, 0])

max = 0
for i in range(n):
    allies_c = copy.deepcopy(allies_mon)
    m = i
    for _ in range(n):
        j = allies_c.index(min(allies_c))
        allies_c[j][0] += enemies[m] // 2
        allies_c[j][1] += 1
        m += 1
        if m >= n:
            m = 0

    for ac in allies_c:
        if max < ac[1]:
            max = ac[1]

print(max)
0