結果

問題 No.133 カードゲーム
ユーザー 前渕竜盛前渕竜盛
提出日時 2021-09-05 16:16:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 43 ms / 5,000 ms
コード長 612 bytes
コンパイル時間 358 ms
コンパイル使用メモリ 82,200 KB
実行使用メモリ 60,544 KB
最終ジャッジ日時 2024-12-21 18:09:03
合計ジャッジ時間 2,351 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,840 KB
testcase_01 AC 34 ms
51,840 KB
testcase_02 AC 33 ms
52,480 KB
testcase_03 AC 34 ms
52,096 KB
testcase_04 AC 35 ms
51,968 KB
testcase_05 AC 40 ms
59,520 KB
testcase_06 AC 42 ms
60,544 KB
testcase_07 AC 42 ms
59,648 KB
testcase_08 AC 37 ms
51,968 KB
testcase_09 AC 34 ms
52,096 KB
testcase_10 AC 39 ms
59,648 KB
testcase_11 AC 39 ms
59,776 KB
testcase_12 AC 43 ms
60,032 KB
testcase_13 AC 34 ms
51,584 KB
testcase_14 AC 33 ms
51,584 KB
testcase_15 AC 33 ms
51,840 KB
testcase_16 AC 42 ms
60,416 KB
testcase_17 AC 39 ms
59,520 KB
testcase_18 AC 42 ms
60,544 KB
testcase_19 AC 41 ms
59,648 KB
testcase_20 AC 41 ms
59,648 KB
testcase_21 AC 42 ms
60,032 KB
testcase_22 AC 40 ms
60,032 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