import sys, re
from collections import deque, defaultdict, Counter
from math import ceil, sqrt, hypot, factorial, pi, sin, cos, radians
from itertools import permutations, combinations, product, accumulate
from operator import itemgetter, mul
from copy import deepcopy
from string import ascii_lowercase, ascii_uppercase, digits
from fractions import gcd

def input(): return sys.stdin.readline().strip()
def INT(): return int(input())
def MAP(): return map(int, input().split())
def LIST(): return list(map(int, input().split()))
sys.setrecursionlimit(10 ** 9)
INF = float('inf')
mod = 10 ** 9 + 7

N = INT()
A = LIST()
B = LIST()

count = 0
A_perm = permutations(A)
for i in A_perm:
	A_win = 0
	B_win = 0
	for j in range(N):
		if i[j] > B[j]:  # Aの勝ち
			A_win += 1
		elif i[j] < B[j]:
			B_win += 1
	if A_win > B_win:
		count += 1

print(count/factorial(N))