結果

問題 No.1279 Array Battle
ユーザー masayamatumasayamatu
提出日時 2020-11-23 23:46:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 251 ms / 2,000 ms
コード長 513 bytes
コンパイル時間 216 ms
コンパイル使用メモリ 82,040 KB
実行使用メモリ 133,812 KB
最終ジャッジ日時 2024-07-23 18:08:50
合計ジャッジ時間 2,693 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,100 KB
testcase_01 AC 39 ms
53,404 KB
testcase_02 AC 39 ms
53,040 KB
testcase_03 AC 39 ms
53,416 KB
testcase_04 AC 39 ms
52,272 KB
testcase_05 AC 40 ms
53,496 KB
testcase_06 AC 39 ms
53,084 KB
testcase_07 AC 39 ms
52,580 KB
testcase_08 AC 38 ms
53,556 KB
testcase_09 AC 39 ms
52,412 KB
testcase_10 AC 39 ms
53,696 KB
testcase_11 AC 46 ms
60,632 KB
testcase_12 AC 53 ms
62,548 KB
testcase_13 AC 64 ms
71,256 KB
testcase_14 AC 61 ms
70,616 KB
testcase_15 AC 177 ms
133,812 KB
testcase_16 AC 198 ms
133,720 KB
testcase_17 AC 235 ms
133,452 KB
testcase_18 AC 251 ms
133,548 KB
testcase_19 AC 233 ms
133,640 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools

n = int(input())

a = []
b = []
count = 1

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

permutate_a =list(itertools.permutations(a))
score=[0 for i in range(len(permutate_a))]

for i in range(len(permutate_a)):
    for j in range(n):
        if permutate_a[i][j]-b[j]>0:
            score[i] += permutate_a[i][j]-b[j]

score.sort(reverse=True)

for i in range(1,len(score)):
    if(score[i]==score[i-1]):
        count += 1
    else:
        break
        
print(count)
0