結果

問題 No.2008 Super Worker
ユーザー Kiri8128Kiri8128
提出日時 2021-08-21 16:38:26
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 306 bytes
コンパイル時間 292 ms
コンパイル使用メモリ 82,456 KB
実行使用メモリ 88,160 KB
最終ジャッジ日時 2024-07-06 05:53:35
合計ジャッジ時間 7,540 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
59,876 KB
testcase_01 AC 37 ms
52,520 KB
testcase_02 AC 51 ms
64,524 KB
testcase_03 AC 35 ms
52,472 KB
testcase_04 AC 34 ms
52,616 KB
testcase_05 AC 35 ms
53,100 KB
testcase_06 AC 37 ms
52,736 KB
testcase_07 AC 34 ms
52,772 KB
testcase_08 AC 38 ms
60,500 KB
testcase_09 AC 45 ms
66,072 KB
testcase_10 AC 75 ms
75,388 KB
testcase_11 AC 242 ms
75,916 KB
testcase_12 TLE -
testcase_13 TLE -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import permutations
N = int(input())
A = [int(a) for a in input().split()]
B = [int(a) for a in input().split()]
ans = 0
for a in permutations([i for i in range(N)]):
    s = 0
    l = 1
    for i in a:
        s += l * A[i]
        l *= B[i]
    ans = max(ans, s)
print(ans % (10 ** 9 + 7))
0