結果

問題 No.9 モンスターのレベル上げ
ユーザー roiti46roiti46
提出日時 2015-02-16 23:38:09
言語 PyPy2
(7.3.15)
結果
TLE  
実行時間 -
コード長 379 bytes
コンパイル時間 1,431 ms
コンパイル使用メモリ 76,692 KB
実行使用メモリ 76,800 KB
最終ジャッジ日時 2024-06-23 20:49:12
合計ジャッジ時間 6,929 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

import copy
N = int(raw_input())
_A = [[i,0] for i in sorted(map(int,raw_input().split()))]
B = map(int,raw_input().split())

ans = 1500
for sp in xrange(N):
    A = copy.deepcopy(_A)
    for i in xrange(sp, N+sp):
        i %= N
        A[0][0] += B[i]/2
        A[0][1] += 1
        A = sorted(sorted(A, key = lambda x:x[1]))
    ans = min(ans, max(a[1] for a in A))
print ans
0