結果
| 問題 | No.133 カードゲーム |
| コンテスト | |
| ユーザー |
ゆるく
|
| 提出日時 | 2015-01-22 23:49:17 |
| 言語 | Python3 (3.14.3 + numpy 2.4.2 + scipy 1.17.0) |
| 結果 |
AC
|
| 実行時間 | 131 ms / 5,000 ms |
| コード長 | 613 bytes |
| 記録 | |
| コンパイル時間 | 526 ms |
| コンパイル使用メモリ | 20,956 KB |
| 実行使用メモリ | 15,992 KB |
| 最終ジャッジ日時 | 2026-03-11 08:11:04 |
| 合計ジャッジ時間 | 4,298 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge1_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 19 |
ソースコード
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)
ゆるく