結果

問題 No.1279 Array Battle
ユーザー 👑 rin204rin204
提出日時 2024-07-24 21:58:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 99 ms / 2,000 ms
コード長 357 bytes
コンパイル時間 278 ms
コンパイル使用メモリ 82,460 KB
実行使用メモリ 76,064 KB
最終ジャッジ日時 2024-07-24 21:58:14
合計ジャッジ時間 2,580 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,064 KB
testcase_01 AC 38 ms
53,000 KB
testcase_02 AC 35 ms
52,948 KB
testcase_03 AC 34 ms
53,352 KB
testcase_04 AC 35 ms
52,816 KB
testcase_05 AC 36 ms
52,316 KB
testcase_06 AC 35 ms
52,688 KB
testcase_07 AC 34 ms
52,716 KB
testcase_08 AC 34 ms
52,468 KB
testcase_09 AC 32 ms
51,880 KB
testcase_10 AC 33 ms
52,940 KB
testcase_11 AC 42 ms
62,256 KB
testcase_12 AC 44 ms
62,144 KB
testcase_13 AC 58 ms
70,308 KB
testcase_14 AC 50 ms
70,036 KB
testcase_15 AC 79 ms
75,556 KB
testcase_16 AC 99 ms
75,568 KB
testcase_17 AC 91 ms
75,572 KB
testcase_18 AC 98 ms
76,064 KB
testcase_19 AC 93 ms
75,876 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools
n = int(input())
alst = list(map(int, input().split()))
blst = list(map(int, input().split()))
max_ = -1
ans = 0
for lst in itertools.permutations(alst):
    total = 0
    for a, b in zip(lst, blst):
        total += max(a - b, 0)
    if max_ == total:
        ans += 1
    elif max_ < total:
        max_ = total
        ans = 1
print(ans)
0