結果
問題 | No.133 カードゲーム |
ユーザー |
![]() |
提出日時 | 2020-01-27 18:22:24 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 31 ms / 5,000 ms |
コード長 | 463 bytes |
コンパイル時間 | 365 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 10,624 KB |
最終ジャッジ日時 | 2024-09-14 12:02:19 |
合計ジャッジ時間 | 1,936 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 19 |
ソースコード
import sysread = sys.stdin.buffer.readreadline = sys.stdin.buffer.readlinereadlines = sys.stdin.buffer.readlinesimport itertoolsN,*AB = map(int,read().split())A = AB[:N]B = AB[N:]perm_A = itertools.permutations(A)perm_B = itertools.permutations(B)match = 0win = 0for p,q in itertools.product(perm_A, perm_B):match += 1large = sum(x > y for x,y in zip(p,q))small = N - largeif large > small:win += 1print(win / match)