結果

問題 No.133 カードゲーム
ユーザー t-rryyyoooot-rryyyoooo
提出日時 2019-09-07 01:57:39
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 505 bytes
コンパイル時間 152 ms
コンパイル使用メモリ 81,840 KB
実行使用メモリ 54,304 KB
最終ジャッジ日時 2024-06-25 01:10:20
合計ジャッジ時間 1,893 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,952 KB
testcase_01 AC 36 ms
52,356 KB
testcase_02 AC 36 ms
52,492 KB
testcase_03 AC 38 ms
52,616 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 38 ms
51,700 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 37 ms
53,192 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools
N = int(input())

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

per1 = itertools.permutations(list(range(N)), N)
per2 = itertools.permutations(list(range(N)), N)
cnt = 0
count = 0
c = 0

for xx in per2:
    for x in xx:
        for yy in per1:
            cnt = 0
            for y in yy:
                if a[x]>b[y]:
                    cnt += 1
            c += 1

            if cnt > N/2:
                count += 1


else:
    ans = cnt / c
    print(ans)
0