結果
| 問題 |
No.133 カードゲーム
|
| コンテスト | |
| ユーザー |
maspy
|
| 提出日時 | 2020-01-27 18:22:24 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
AC
|
| 実行時間 | 31 ms / 5,000 ms |
| コード長 | 463 bytes |
| コンパイル時間 | 365 ms |
| コンパイル使用メモリ | 12,544 KB |
| 実行使用メモリ | 10,624 KB |
| 最終ジャッジ日時 | 2024-09-14 12:02:19 |
| 合計ジャッジ時間 | 1,936 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 19 |
ソースコード
import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines
import itertools
N,*AB = map(int,read().split())
A = AB[:N]
B = AB[N:]
perm_A = itertools.permutations(A)
perm_B = itertools.permutations(B)
match = 0
win = 0
for p,q in itertools.product(perm_A, perm_B):
match += 1
large = sum(x > y for x,y in zip(p,q))
small = N - large
if large > small:
win += 1
print(win / match)
maspy