結果

問題 No.1279 Array Battle
ユーザー aqua_tenhouaqua_tenhou
提出日時 2020-11-06 21:27:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 186 ms / 2,000 ms
コード長 382 bytes
コンパイル時間 172 ms
コンパイル使用メモリ 82,400 KB
実行使用メモリ 131,012 KB
最終ジャッジ日時 2024-07-22 12:11:35
合計ジャッジ時間 2,322 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,472 KB
testcase_01 AC 36 ms
52,224 KB
testcase_02 AC 37 ms
53,080 KB
testcase_03 AC 37 ms
54,080 KB
testcase_04 AC 36 ms
52,364 KB
testcase_05 AC 36 ms
52,336 KB
testcase_06 AC 37 ms
52,316 KB
testcase_07 AC 38 ms
53,136 KB
testcase_08 AC 37 ms
54,232 KB
testcase_09 AC 37 ms
52,216 KB
testcase_10 AC 38 ms
52,464 KB
testcase_11 AC 43 ms
62,032 KB
testcase_12 AC 44 ms
61,732 KB
testcase_13 AC 59 ms
73,180 KB
testcase_14 AC 55 ms
71,572 KB
testcase_15 AC 166 ms
131,012 KB
testcase_16 AC 175 ms
130,736 KB
testcase_17 AC 186 ms
130,596 KB
testcase_18 AC 186 ms
130,732 KB
testcase_19 AC 179 ms
130,620 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools

n = int(input())
a = list(map(int,input().split()))
b = list(map(int,input().split()))


lis = list(itertools.permutations(a, n))

dic = {}
for x in lis:
    p = 0
    for i,y in enumerate(x):
        if y > b[i]:
            p += y - b[i]
    if p in dic:
        dic[p] += 1
    else:
        dic[p] = 1
dic2 = sorted(dic.items(), reverse=True)
print(dic2[0][1])
0