結果

問題 No.133 カードゲーム
ユーザー yukuyonyukuyon
提出日時 2020-07-19 20:01:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 58 ms / 5,000 ms
コード長 385 bytes
コンパイル時間 185 ms
コンパイル使用メモリ 82,320 KB
実行使用メモリ 61,056 KB
最終ジャッジ日時 2024-05-09 18:10:51
合計ジャッジ時間 2,234 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,840 KB
testcase_01 AC 41 ms
52,224 KB
testcase_02 AC 39 ms
51,968 KB
testcase_03 AC 39 ms
52,196 KB
testcase_04 AC 38 ms
51,968 KB
testcase_05 AC 43 ms
59,392 KB
testcase_06 AC 44 ms
61,056 KB
testcase_07 AC 41 ms
59,904 KB
testcase_08 AC 35 ms
51,968 KB
testcase_09 AC 35 ms
52,224 KB
testcase_10 AC 58 ms
59,648 KB
testcase_11 AC 51 ms
59,648 KB
testcase_12 AC 43 ms
60,416 KB
testcase_13 AC 33 ms
51,968 KB
testcase_14 AC 34 ms
52,224 KB
testcase_15 AC 34 ms
52,480 KB
testcase_16 AC 40 ms
60,544 KB
testcase_17 AC 40 ms
59,008 KB
testcase_18 AC 43 ms
60,160 KB
testcase_19 AC 41 ms
59,392 KB
testcase_20 AC 39 ms
59,392 KB
testcase_21 AC 41 ms
60,288 KB
testcase_22 AC 42 ms
60,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import *
n=int(input())
g=0
w=0
a=list(map(int,input().split()))
b=list(map(int,input().split()))
for j in permutations(a):
    for k in permutations(b):
        g+=1
        aa=0
        bb=0
        for i in range(n):
            if j[i]>k[i]:
                aa+=1
            else:
                bb+=1
        if aa>bb:
            w+=1
print(w/g)
                
0