結果

問題 No.1279 Array Battle
ユーザー lllllll88938494lllllll88938494
提出日時 2022-01-14 05:57:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 288 ms / 2,000 ms
コード長 500 bytes
コンパイル時間 168 ms
コンパイル使用メモリ 82,204 KB
実行使用メモリ 77,364 KB
最終ジャッジ日時 2024-11-18 12:46:36
合計ジャッジ時間 3,046 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
54,696 KB
testcase_01 AC 42 ms
54,540 KB
testcase_02 AC 41 ms
55,064 KB
testcase_03 AC 37 ms
54,292 KB
testcase_04 AC 36 ms
55,100 KB
testcase_05 AC 37 ms
54,220 KB
testcase_06 AC 37 ms
54,652 KB
testcase_07 AC 37 ms
54,052 KB
testcase_08 AC 37 ms
54,592 KB
testcase_09 AC 37 ms
54,920 KB
testcase_10 AC 37 ms
55,240 KB
testcase_11 AC 54 ms
68,012 KB
testcase_12 AC 80 ms
76,676 KB
testcase_13 AC 100 ms
76,656 KB
testcase_14 AC 95 ms
76,464 KB
testcase_15 AC 256 ms
76,396 KB
testcase_16 AC 266 ms
76,608 KB
testcase_17 AC 288 ms
77,040 KB
testcase_18 AC 281 ms
77,364 KB
testcase_19 AC 272 ms
77,052 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
import sys
sys.setrecursionlimit(10**6)
n=int(input())
a=list(map(int,input().split()))
b=list(map(int,input().split()))
ans=[0]
dic=defaultdict(int)

def  cal(x,total,ff):
    if x == n:
        ans[0] = max(ans[0],total)
        dic[total] += 1
        return
    
    for i in range(n):    
        if str(i) in ff:
            continue
        t = max(a[x]-b[i],0)
        
        cal(x+1,total+t,ff+str(i))


f=''
cal(0,0,f)
#print(ans[0])
print(dic[ans[0]])
0