結果

問題 No.1279 Array Battle
ユーザー roarisroaris
提出日時 2020-11-14 01:40:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 130 ms / 2,000 ms
コード長 339 bytes
コンパイル時間 198 ms
コンパイル使用メモリ 82,524 KB
実行使用メモリ 76,672 KB
最終ジャッジ日時 2024-07-22 22:34:57
合計ジャッジ時間 2,383 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
53,632 KB
testcase_01 AC 44 ms
53,632 KB
testcase_02 AC 45 ms
53,760 KB
testcase_03 AC 45 ms
53,632 KB
testcase_04 AC 45 ms
53,504 KB
testcase_05 AC 45 ms
53,552 KB
testcase_06 AC 45 ms
53,760 KB
testcase_07 AC 45 ms
53,376 KB
testcase_08 AC 46 ms
53,760 KB
testcase_09 AC 45 ms
53,632 KB
testcase_10 AC 46 ms
54,400 KB
testcase_11 AC 54 ms
62,464 KB
testcase_12 AC 54 ms
63,232 KB
testcase_13 AC 69 ms
72,900 KB
testcase_14 AC 64 ms
71,552 KB
testcase_15 AC 103 ms
76,164 KB
testcase_16 AC 116 ms
76,032 KB
testcase_17 AC 120 ms
76,160 KB
testcase_18 AC 130 ms
76,672 KB
testcase_19 AC 123 ms
76,404 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *
from itertools import permutations

N = int(input())
a = list(map(int, input().split()))
b = list(map(int, input().split()))
cnt = defaultdict(int)

for p in permutations(a):
    score = 0
    
    for pi, bi in zip(p, b):
        score += max(0, pi-bi)
    
    cnt[score] += 1

M = max(cnt.keys())
print(cnt[M])
0