結果

問題 No.1279 Array Battle
ユーザー vwxyzvwxyz
提出日時 2023-05-10 07:03:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 114 ms / 2,000 ms
コード長 445 bytes
コンパイル時間 203 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 76,160 KB
最終ジャッジ日時 2024-05-04 22:02:17
合計ジャッジ時間 2,598 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,968 KB
testcase_01 AC 38 ms
52,096 KB
testcase_02 AC 41 ms
52,352 KB
testcase_03 AC 42 ms
52,224 KB
testcase_04 AC 39 ms
52,224 KB
testcase_05 AC 39 ms
52,096 KB
testcase_06 AC 39 ms
52,096 KB
testcase_07 AC 39 ms
52,480 KB
testcase_08 AC 39 ms
52,096 KB
testcase_09 AC 39 ms
52,096 KB
testcase_10 AC 40 ms
52,736 KB
testcase_11 AC 47 ms
60,416 KB
testcase_12 AC 50 ms
61,696 KB
testcase_13 AC 57 ms
66,304 KB
testcase_14 AC 55 ms
66,048 KB
testcase_15 AC 89 ms
75,692 KB
testcase_16 AC 108 ms
75,876 KB
testcase_17 AC 108 ms
75,680 KB
testcase_18 AC 114 ms
75,956 KB
testcase_19 AC 109 ms
76,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline=sys.stdin.readline
write=sys.stdout.write
from math import gcd as GCD
import math
import itertools

N=int(readline())
A=list(map(int,readline().split()))
B=list(map(int,readline().split()))
m,ans=-1,0
for tpl in itertools.permutations([i for i in range(N)]):
    s=0
    for i in range(N):
        a=A[tpl[i]]
        b=B[i]
        s+=max(0,a-b)
    if s==m:
        ans+=1
    elif s>m:
        m=s
        ans=1
print(ans)
0