結果

問題 No.133 カードゲーム
ユーザー tnodinotnodino
提出日時 2022-07-14 19:23:30
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 528 ms / 5,000 ms
コード長 360 bytes
コンパイル時間 182 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-06-26 03:43:49
合計ジャッジ時間 12,107 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 321 ms
10,880 KB
testcase_01 AC 328 ms
11,008 KB
testcase_02 AC 320 ms
10,880 KB
testcase_03 AC 207 ms
11,008 KB
testcase_04 AC 426 ms
10,880 KB
testcase_05 AC 526 ms
10,880 KB
testcase_06 AC 518 ms
10,880 KB
testcase_07 AC 524 ms
11,008 KB
testcase_08 AC 421 ms
11,008 KB
testcase_09 AC 419 ms
11,008 KB
testcase_10 AC 522 ms
10,880 KB
testcase_11 AC 512 ms
10,880 KB
testcase_12 AC 521 ms
11,008 KB
testcase_13 AC 322 ms
11,008 KB
testcase_14 AC 411 ms
11,008 KB
testcase_15 AC 415 ms
10,880 KB
testcase_16 AC 521 ms
11,008 KB
testcase_17 AC 512 ms
11,008 KB
testcase_18 AC 528 ms
11,008 KB
testcase_19 AC 517 ms
11,008 KB
testcase_20 AC 528 ms
11,008 KB
testcase_21 AC 517 ms
11,008 KB
testcase_22 AC 523 ms
11,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from random import shuffle
N = int(input())
A = list(map(int,input().split()))
B = list(map(int,input().split()))
s = 0
t = 0
for _ in range(100000):
    shuffle(A)
    shuffle(B)
    cnt = 0
    for i in range(N):
        if A[i] > B[i]:
            cnt += 1
        if A[i] < B[i]:
            cnt -= 1
    if cnt >= 1:
        s += 1
    t += 1
print(s / t)
0