結果

問題 No.133 カードゲーム
ユーザー 前渕竜盛前渕竜盛
提出日時 2021-09-05 16:16:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 48 ms / 5,000 ms
コード長 612 bytes
コンパイル時間 280 ms
コンパイル使用メモリ 82,380 KB
実行使用メモリ 61,632 KB
最終ジャッジ日時 2024-06-01 11:45:49
合計ジャッジ時間 2,191 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,416 KB
testcase_01 AC 37 ms
52,272 KB
testcase_02 AC 40 ms
52,528 KB
testcase_03 AC 38 ms
53,564 KB
testcase_04 AC 38 ms
53,288 KB
testcase_05 AC 46 ms
60,480 KB
testcase_06 AC 47 ms
61,264 KB
testcase_07 AC 45 ms
61,632 KB
testcase_08 AC 37 ms
52,628 KB
testcase_09 AC 38 ms
52,632 KB
testcase_10 AC 45 ms
61,408 KB
testcase_11 AC 44 ms
60,536 KB
testcase_12 AC 45 ms
60,756 KB
testcase_13 AC 38 ms
53,760 KB
testcase_14 AC 37 ms
53,040 KB
testcase_15 AC 37 ms
52,756 KB
testcase_16 AC 45 ms
61,432 KB
testcase_17 AC 43 ms
59,140 KB
testcase_18 AC 48 ms
60,580 KB
testcase_19 AC 44 ms
59,616 KB
testcase_20 AC 44 ms
61,388 KB
testcase_21 AC 46 ms
61,436 KB
testcase_22 AC 45 ms
60,408 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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


a_com =itertools.permutations(a, len(a))
b_com =itertools.permutations(b, len(b))

a_c =[]
b_c =[]
for i in a_com:
    a_c.append(i)
for i in b_com:
    b_c.append(i)
    

ans =0
cnt =0
for i in range(len(a_c)):
    for j in range(len(b_c)):
        cnt +=1
        apoint =0
        bpoint =0
        for s in range(n):
            if a_c[i][s] <b_c[j][s]:
                bpoint +=1
            else:
                apoint +=1
        if apoint>bpoint:
            ans +=1
print(ans/cnt)
            
    
0