結果

問題 No.1279 Array Battle
ユーザー tobusakanatobusakana
提出日時 2022-12-03 19:33:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 120 ms / 2,000 ms
コード長 345 bytes
コンパイル時間 194 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 76,576 KB
最終ジャッジ日時 2024-04-19 06:01:51
合計ジャッジ時間 2,281 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,760 KB
testcase_01 AC 42 ms
53,504 KB
testcase_02 AC 42 ms
54,400 KB
testcase_03 AC 43 ms
53,760 KB
testcase_04 AC 41 ms
53,504 KB
testcase_05 AC 41 ms
54,144 KB
testcase_06 AC 42 ms
53,888 KB
testcase_07 AC 40 ms
53,420 KB
testcase_08 AC 41 ms
53,504 KB
testcase_09 AC 41 ms
53,632 KB
testcase_10 AC 41 ms
53,812 KB
testcase_11 AC 49 ms
62,208 KB
testcase_12 AC 49 ms
63,360 KB
testcase_13 AC 59 ms
69,248 KB
testcase_14 AC 56 ms
68,352 KB
testcase_15 AC 94 ms
76,440 KB
testcase_16 AC 103 ms
76,160 KB
testcase_17 AC 114 ms
76,416 KB
testcase_18 AC 120 ms
76,576 KB
testcase_19 AC 115 ms
76,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int,input().split()))
B = list(map(int,input().split()))

import itertools
from collections import defaultdict
dic = defaultdict(int)
for perm in itertools.permutations(A):
    val = 0
    for i in range(N):
        val += max(0, perm[i] - B[i])
    dic[val] += 1
    
max_val = max(dic.keys())

print(dic[max_val])
0