結果
問題 |
No.133 カードゲーム
|
ユーザー |
|
提出日時 | 2024-05-06 13:23:25 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 53 ms / 5,000 ms |
コード長 | 465 bytes |
コンパイル時間 | 185 ms |
コンパイル使用メモリ | 82,432 KB |
実行使用メモリ | 60,672 KB |
最終ジャッジ日時 | 2024-11-28 20:12:38 |
合計ジャッジ時間 | 2,293 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 19 |
ソースコード
import itertools N = int(input()) A = list(map(int, input().split())) B = list(map(int, input().split())) count = 0 all = 0 for i in itertools.permutations(A): for j in itertools.permutations(B): a_win, b_win = 0, 0 all += 1 for k in range(N): if i[k] > j[k]: a_win += 1 elif j[k] > i[k]: b_win += 1 if a_win > b_win: count += 1 ans = count/all print(ans)