結果

問題 No.1279 Array Battle
ユーザー tobusakanatobusakana
提出日時 2022-12-03 19:33:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 118 ms / 2,000 ms
コード長 345 bytes
コンパイル時間 752 ms
コンパイル使用メモリ 82,100 KB
実行使用メモリ 76,672 KB
最終ジャッジ日時 2024-10-10 22:41:02
合計ジャッジ時間 2,596 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,504 KB
testcase_01 AC 41 ms
53,120 KB
testcase_02 AC 41 ms
53,632 KB
testcase_03 AC 41 ms
53,504 KB
testcase_04 AC 41 ms
53,504 KB
testcase_05 AC 41 ms
53,632 KB
testcase_06 AC 41 ms
53,504 KB
testcase_07 AC 41 ms
53,760 KB
testcase_08 AC 41 ms
53,760 KB
testcase_09 AC 42 ms
53,376 KB
testcase_10 AC 41 ms
53,760 KB
testcase_11 AC 51 ms
62,592 KB
testcase_12 AC 50 ms
62,336 KB
testcase_13 AC 60 ms
68,992 KB
testcase_14 AC 57 ms
67,712 KB
testcase_15 AC 96 ms
76,160 KB
testcase_16 AC 101 ms
76,160 KB
testcase_17 AC 112 ms
76,336 KB
testcase_18 AC 118 ms
76,672 KB
testcase_19 AC 113 ms
76,288 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