結果

問題 No.1279 Array Battle
ユーザー taiga000629taiga000629
提出日時 2020-11-06 21:36:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 171 ms / 2,000 ms
コード長 383 bytes
コンパイル時間 192 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 130,804 KB
最終ジャッジ日時 2024-07-22 12:22:56
合計ジャッジ時間 2,249 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,224 KB
testcase_01 AC 34 ms
52,224 KB
testcase_02 AC 34 ms
52,224 KB
testcase_03 AC 34 ms
52,096 KB
testcase_04 AC 36 ms
52,480 KB
testcase_05 AC 36 ms
52,096 KB
testcase_06 AC 36 ms
52,224 KB
testcase_07 AC 35 ms
52,096 KB
testcase_08 AC 35 ms
52,480 KB
testcase_09 AC 35 ms
52,096 KB
testcase_10 AC 35 ms
52,224 KB
testcase_11 AC 44 ms
59,648 KB
testcase_12 AC 47 ms
62,080 KB
testcase_13 AC 60 ms
70,784 KB
testcase_14 AC 57 ms
69,120 KB
testcase_15 AC 157 ms
130,360 KB
testcase_16 AC 166 ms
130,796 KB
testcase_17 AC 168 ms
130,804 KB
testcase_18 AC 171 ms
130,672 KB
testcase_19 AC 167 ms
130,664 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
a=list(map(int,input().split()))
b=list(map(int,input().split()))
maxa=-1
ans=1
from itertools import permutations as per
kai=list(per(list(range(1,n+1))))
for i in range(len(kai)):
    sum=0
    j=0
    for x in kai[i]:

        sum+=max(a[x-1]-b[j],0)
        j+=1
    if sum==maxa:
        ans+=1
    elif sum>maxa:
        maxa=sum
        ans=1

print(ans)






0