結果

問題 No.1279 Array Battle
ユーザー persimmon-persimmonpersimmon-persimmon
提出日時 2021-02-18 20:29:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 434 ms / 2,000 ms
コード長 433 bytes
コンパイル時間 322 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 164,648 KB
最終ジャッジ日時 2024-09-15 01:37:40
合計ジャッジ時間 4,065 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,096 KB
testcase_01 AC 42 ms
51,840 KB
testcase_02 AC 42 ms
52,736 KB
testcase_03 AC 41 ms
51,712 KB
testcase_04 AC 41 ms
51,584 KB
testcase_05 AC 41 ms
51,968 KB
testcase_06 AC 41 ms
51,456 KB
testcase_07 AC 40 ms
51,968 KB
testcase_08 AC 41 ms
52,352 KB
testcase_09 AC 43 ms
51,456 KB
testcase_10 AC 42 ms
52,352 KB
testcase_11 AC 63 ms
64,256 KB
testcase_12 AC 66 ms
67,712 KB
testcase_13 AC 104 ms
80,512 KB
testcase_14 AC 103 ms
80,640 KB
testcase_15 AC 411 ms
164,144 KB
testcase_16 AC 434 ms
164,400 KB
testcase_17 AC 432 ms
164,144 KB
testcase_18 AC 431 ms
164,648 KB
testcase_19 AC 431 ms
164,148 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
a=list(map(int,input().split()))
b=list(map(int,input().split()))
allpat=[]
todo=[[i] for i in range(n)]
while todo:
  v=todo.pop()
  if len(v)==n:
    allpat.append(v)
    continue
  for nv in range(n):
    if nv in v:continue
    todo.append(v+[nv])
mxv=0
ans=0

for pat in allpat:
  tmp=0
  for i in range(n):
    tmp+=max(0,a[pat[i]]-b[i])
  if tmp==mxv:
    ans+=1
  elif tmp>mxv:
    mxv=tmp
    ans=1
print(ans)
0