結果

問題 No.662 スロットマシーン
ユーザー Coki628Coki628
提出日時 2020-05-14 19:16:39
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 1,954 bytes
コンパイル時間 268 ms
コンパイル使用メモリ 11,244 KB
実行使用メモリ 13,528 KB
最終ジャッジ日時 2023-10-13 17:46:03
合計ジャッジ時間 7,991 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 17 ms
13,464 KB
testcase_01 AC 22 ms
9,064 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from collections import Counter

def input(): return sys.stdin.readline().strip()
def list2d(a, b, c): return [[c] * b for i in range(a)]
def list3d(a, b, c, d): return [[[d] * c for j in range(b)] for i in range(a)]
def list4d(a, b, c, d, e): return [[[[e] * d for j in range(c)] for j in range(b)] for i in range(a)]
def ceil(x, y=1): return int(-(-x // y))
def INT(): return int(input())
def MAP(): return map(int, input().split())
def LIST(N=None): return list(MAP()) if N is None else [INT() for i in range(N)]
def Yes(): print('Yes')
def No(): print('No')
def YES(): print('YES')
def NO(): print('NO')
sys.setrecursionlimit(10 ** 9)
INF = 10 ** 18
MOD = 10 ** 9 + 7
EPS = 10 ** -10

M = 5
coin = [0] * M
stoi = {}
for i in range(M):
    s, c = input().split()
    c = int(c)
    coin[i] = c
    stoi[s] = i

C = [Counter() for i in range(3)]
for i in range(3):
    N = INT()
    S = [input() for i in range(N)]
    for j in range(N):
        k = (j+1) % N
        l = (j+2) % N
        C[i][(stoi[S[j]], stoi[S[k]], stoi[S[l]])] += 1

grid = list2d(3, 3, '')
ans = [0] * M
total = 0
sm = 0
for k1, v1 in C[0].items():
    for i, s in enumerate(k1):
        grid[i][0] = s
    for k2, v2 in C[1].items():
        for i, s in enumerate(k2):
            grid[i][1] = s
        for k3, v3 in C[2].items():
            cnt = v1 * v2 * v3
            for i, s in enumerate(k3):
                grid[i][2] = s
            for i in range(3):
                if grid[i][0] == grid[i][1] == grid[i][2]:
                    ans[grid[i][0]] += 1
                    sm += coin[grid[i][0]] * cnt
            if grid[0][0] == grid[1][1] == grid[2][2]:
                ans[grid[0][0]] += 1
                sm += coin[grid[0][0]] * cnt
            if grid[0][2] == grid[1][1] == grid[2][0]:
                ans[grid[0][2]] += 1
                sm += coin[grid[0][2]] * cnt
            total += cnt
exp = sm / total
print(exp)
for a in ans:
    print(a)
0