結果

問題 No.662 スロットマシーン
ユーザー Coki628Coki628
提出日時 2020-05-14 19:19:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 409 ms / 2,000 ms
コード長 1,960 bytes
コンパイル時間 356 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 79,488 KB
最終ジャッジ日時 2024-09-15 13:40:10
合計ジャッジ時間 6,186 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
54,144 KB
testcase_01 AC 78 ms
69,632 KB
testcase_02 AC 170 ms
77,568 KB
testcase_03 AC 192 ms
77,952 KB
testcase_04 AC 141 ms
78,080 KB
testcase_05 AC 141 ms
77,824 KB
testcase_06 AC 304 ms
78,080 KB
testcase_07 AC 352 ms
78,080 KB
testcase_08 AC 339 ms
78,336 KB
testcase_09 AC 382 ms
78,976 KB
testcase_10 AC 381 ms
78,976 KB
testcase_11 AC 371 ms
79,104 KB
testcase_12 AC 398 ms
79,104 KB
testcase_13 AC 372 ms
78,976 KB
testcase_14 AC 140 ms
78,336 KB
testcase_15 AC 381 ms
79,488 KB
testcase_16 AC 48 ms
54,272 KB
testcase_17 AC 366 ms
79,360 KB
testcase_18 AC 409 ms
78,848 KB
権限があれば一括ダウンロードができます

ソースコード

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]] += cnt
                    sm += coin[grid[i][0]] * cnt
            if grid[0][0] == grid[1][1] == grid[2][2]:
                ans[grid[0][0]] += cnt
                sm += coin[grid[0][0]] * cnt
            if grid[0][2] == grid[1][1] == grid[2][0]:
                ans[grid[0][2]] += cnt
                sm += coin[grid[0][2]] * cnt
            total += cnt
exp = sm / total
print(exp)
for a in ans:
    print(a)
0