結果
問題 | 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 itertoolsN = int(input())A = list(map(int, input().split()))B = list(map(int, input().split()))count = 0all = 0for i in itertools.permutations(A):for j in itertools.permutations(B):a_win, b_win = 0, 0all += 1for k in range(N):if i[k] > j[k]:a_win += 1elif j[k] > i[k]:b_win += 1if a_win > b_win:count += 1ans = count/allprint(ans)