結果

問題 No.1279 Array Battle
ユーザー tanon710tanon710
提出日時 2020-11-06 23:24:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 123 ms / 2,000 ms
コード長 369 bytes
コンパイル時間 195 ms
コンパイル使用メモリ 82,416 KB
実行使用メモリ 76,416 KB
最終ジャッジ日時 2024-07-22 13:45:25
合計ジャッジ時間 2,156 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,632 KB
testcase_01 AC 41 ms
53,632 KB
testcase_02 AC 40 ms
53,504 KB
testcase_03 AC 39 ms
53,120 KB
testcase_04 AC 39 ms
53,760 KB
testcase_05 AC 39 ms
53,504 KB
testcase_06 AC 41 ms
53,632 KB
testcase_07 AC 39 ms
53,376 KB
testcase_08 AC 40 ms
53,376 KB
testcase_09 AC 40 ms
53,504 KB
testcase_10 AC 41 ms
53,376 KB
testcase_11 AC 48 ms
62,080 KB
testcase_12 AC 49 ms
62,720 KB
testcase_13 AC 58 ms
68,992 KB
testcase_14 AC 54 ms
67,456 KB
testcase_15 AC 94 ms
76,416 KB
testcase_16 AC 109 ms
76,196 KB
testcase_17 AC 106 ms
76,416 KB
testcase_18 AC 123 ms
76,416 KB
testcase_19 AC 109 ms
76,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools
import collections

n=int(input())
a=list(map(int,input().split()))
b=list(map(int,input().split()))
cnt=collections.defaultdict(int)
for p in itertools.permutations(range(n)):
    point=0
    for i in range(n):
        if a[p[i]]>b[i]:
            point+=a[p[i]]-b[i]
    cnt[point]+=1
points=list(cnt.keys())
maxpoint=max(points)
print(cnt[maxpoint])
0