結果

問題 No.1279 Array Battle
ユーザー ayaoniayaoni
提出日時 2020-11-06 23:25:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 352 ms / 2,000 ms
コード長 344 bytes
コンパイル時間 171 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 143,132 KB
最終ジャッジ日時 2024-07-22 13:45:31
合計ジャッジ時間 3,469 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,712 KB
testcase_01 AC 41 ms
52,096 KB
testcase_02 AC 43 ms
52,352 KB
testcase_03 AC 42 ms
51,968 KB
testcase_04 AC 41 ms
52,224 KB
testcase_05 AC 39 ms
52,096 KB
testcase_06 AC 36 ms
52,224 KB
testcase_07 AC 37 ms
51,968 KB
testcase_08 AC 37 ms
52,096 KB
testcase_09 AC 37 ms
51,712 KB
testcase_10 AC 38 ms
51,968 KB
testcase_11 AC 51 ms
62,080 KB
testcase_12 AC 69 ms
76,288 KB
testcase_13 AC 101 ms
82,524 KB
testcase_14 AC 93 ms
82,944 KB
testcase_15 AC 299 ms
143,032 KB
testcase_16 AC 352 ms
142,780 KB
testcase_17 AC 343 ms
143,132 KB
testcase_18 AC 347 ms
142,784 KB
testcase_19 AC 321 ms
143,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from itertools import permutations
def I(): return int(sys.stdin.readline().rstrip())
def LI(): return list(map(int,sys.stdin.readline().rstrip().split()))


N = I()
A,B = LI(),LI()

ANS = []
for X in list(permutations([i for i in range(N)],N)):
    ANS.append(sum(max(0,A[X[i]]-B[i]) for i in range(N)))

print(ANS.count(max(ANS)))
0