結果

問題 No.1279 Array Battle
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-10-31 23:50:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 262 ms / 2,000 ms
コード長 271 bytes
コンパイル時間 578 ms
コンパイル使用メモリ 82,608 KB
実行使用メモリ 76,480 KB
最終ジャッジ日時 2024-10-31 23:50:37
合計ジャッジ時間 3,795 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,544 KB
testcase_01 AC 38 ms
52,184 KB
testcase_02 AC 41 ms
53,248 KB
testcase_03 AC 39 ms
53,956 KB
testcase_04 AC 38 ms
53,204 KB
testcase_05 AC 38 ms
52,200 KB
testcase_06 AC 40 ms
53,108 KB
testcase_07 AC 39 ms
53,092 KB
testcase_08 AC 39 ms
52,020 KB
testcase_09 AC 38 ms
51,996 KB
testcase_10 AC 40 ms
53,084 KB
testcase_11 AC 53 ms
62,436 KB
testcase_12 AC 71 ms
74,512 KB
testcase_13 AC 98 ms
76,296 KB
testcase_14 AC 90 ms
76,480 KB
testcase_15 AC 223 ms
76,056 KB
testcase_16 AC 262 ms
76,064 KB
testcase_17 AC 249 ms
76,256 KB
testcase_18 AC 241 ms
76,076 KB
testcase_19 AC 222 ms
76,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
a=list(map(int,input().split()))
b=list(map(int,input().split()))
g=-1
c=0
from itertools import permutations
for p in permutations(list(range(n))):
  ng=sum(max(a[p[i]]-b[i],0) for i in range(n))
  if ng>g:
    g=ng
    c=1
  elif ng==g:
    c+=1
print(c)
0