結果
問題 | No.1279 Array Battle |
ユーザー |
![]() |
提出日時 | 2020-11-06 22:22:08 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 115 ms / 2,000 ms |
コード長 | 368 bytes |
コンパイル時間 | 356 ms |
コンパイル使用メモリ | 82,788 KB |
実行使用メモリ | 76,736 KB |
最終ジャッジ日時 | 2024-07-22 13:05:53 |
合計ジャッジ時間 | 2,264 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 20 |
ソースコード
N, = map(int, input().split())from itertools import permutationsX = list(map(int, input().split()))Y = list(map(int, input().split()))from collections import defaultdictD = defaultdict(int)mx = 0for x in permutations(X, N):R = 0for i in range(N):a,b=x[i],Y[i]if a>b:R+=a-bD[R] += 1mx = max(R, mx)print(D[mx])