結果

問題 No.1279 Array Battle
ユーザー えいじえいじ
提出日時 2023-10-06 19:05:59
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,217 ms / 2,000 ms
コード長 382 bytes
コンパイル時間 233 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-07-26 15:31:56
合計ジャッジ時間 6,926 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 31 ms
10,880 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 30 ms
10,624 KB
testcase_05 AC 30 ms
10,880 KB
testcase_06 AC 30 ms
10,752 KB
testcase_07 AC 30 ms
10,752 KB
testcase_08 AC 30 ms
10,752 KB
testcase_09 AC 31 ms
10,880 KB
testcase_10 AC 30 ms
10,880 KB
testcase_11 AC 32 ms
10,752 KB
testcase_12 AC 39 ms
10,880 KB
testcase_13 AC 130 ms
10,752 KB
testcase_14 AC 109 ms
10,752 KB
testcase_15 AC 681 ms
10,880 KB
testcase_16 AC 898 ms
10,752 KB
testcase_17 AC 1,215 ms
10,752 KB
testcase_18 AC 1,083 ms
10,624 KB
testcase_19 AC 1,217 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools

N = int(input())
A = list(map(int, input().split()))
B = list(map(int, input().split()))
max_sco = 0
cnt = 0
for ID in itertools.permutations(range(N)):
    sco = 0
    for i in range(N):
        if A[ID[i]] > B[i]:
            sco += A[ID[i]] - B[i]
    if max_sco < sco:
        max_sco = sco
        cnt = 1
    elif max_sco == sco:
        cnt += 1
print(cnt)
0