結果

問題 No.133 カードゲーム
ユーザー nohakai3nohakai3
提出日時 2022-10-17 20:44:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 39 ms / 5,000 ms
コード長 314 bytes
コンパイル時間 179 ms
コンパイル使用メモリ 82,100 KB
実行使用メモリ 53,764 KB
最終ジャッジ日時 2024-06-28 10:16:35
合計ジャッジ時間 1,897 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,400 KB
testcase_01 AC 39 ms
51,696 KB
testcase_02 AC 38 ms
52,004 KB
testcase_03 AC 38 ms
52,912 KB
testcase_04 AC 39 ms
52,272 KB
testcase_05 AC 38 ms
52,308 KB
testcase_06 AC 38 ms
53,268 KB
testcase_07 AC 39 ms
52,216 KB
testcase_08 AC 39 ms
53,740 KB
testcase_09 AC 39 ms
53,424 KB
testcase_10 AC 38 ms
53,344 KB
testcase_11 AC 39 ms
51,940 KB
testcase_12 AC 39 ms
52,152 KB
testcase_13 AC 39 ms
52,532 KB
testcase_14 AC 39 ms
52,184 KB
testcase_15 AC 38 ms
52,676 KB
testcase_16 AC 39 ms
53,128 KB
testcase_17 AC 39 ms
52,468 KB
testcase_18 AC 38 ms
52,684 KB
testcase_19 AC 38 ms
52,632 KB
testcase_20 AC 38 ms
53,564 KB
testcase_21 AC 39 ms
52,676 KB
testcase_22 AC 39 ms
53,764 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import permutations


n=int(input())
A=list(map(int,input().split()))
B=list(map(int,input().split()))
cnt=0
win=0


for i in permutations(A,n):
    cnt+=1
    w=0
    for x,y in zip(i,B):
        if x>y:
            w+=1
        elif y>x:
            w-=1
    if w>0:
        win+=1

print(win/cnt)
0