結果

問題 No.133 カードゲーム
ユーザー ゆるくゆるく
提出日時 2015-01-22 23:49:17
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 37 ms / 5,000 ms
コード長 613 bytes
コンパイル時間 451 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 11,904 KB
最終ジャッジ日時 2024-06-25 03:27:09
合計ジャッジ時間 2,201 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 19
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
#sys.setrecursionlimit(n)
import heapq
import re
import bisect
import random
import math
import itertools
from collections import defaultdict, deque
from copy import deepcopy
from decimal import *

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

aa = list(itertools.permutations(a))
bb = list(itertools.permutations(b))

win_count = 0
pt_count = 0
for ta in aa:
  for tb in bb:
    pt_count += 1
    win = 0
    for i in range(n):
      if ta[i] > tb[i]:
        win += 1
      if win > (n / 2):
        win_count += 1
        break
print(win_count / pt_count)
0