結果

問題 No.662 スロットマシーン
ユーザー tails1434tails1434
提出日時 2020-01-25 21:23:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 111 ms / 2,000 ms
コード長 788 bytes
コンパイル時間 165 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 77,440 KB
最終ジャッジ日時 2024-09-14 04:14:25
合計ジャッジ時間 2,624 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,096 KB
testcase_01 AC 38 ms
52,096 KB
testcase_02 AC 43 ms
57,600 KB
testcase_03 AC 50 ms
59,372 KB
testcase_04 AC 63 ms
66,688 KB
testcase_05 AC 44 ms
58,112 KB
testcase_06 AC 65 ms
67,840 KB
testcase_07 AC 64 ms
67,968 KB
testcase_08 AC 97 ms
77,056 KB
testcase_09 AC 111 ms
77,440 KB
testcase_10 AC 98 ms
77,312 KB
testcase_11 AC 98 ms
77,184 KB
testcase_12 AC 97 ms
77,164 KB
testcase_13 AC 97 ms
77,140 KB
testcase_14 AC 97 ms
76,976 KB
testcase_15 AC 97 ms
76,988 KB
testcase_16 AC 38 ms
51,840 KB
testcase_17 AC 98 ms
77,056 KB
testcase_18 AC 97 ms
77,140 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    pictures = [None] * 5
    coins = [None] * 5
    for i in range(5):
        pictures[i], coins[i] = input().split()
        coins[i] = int(coins[i])

    n1 = int(input())
    A = [None] * n1
    for i in range(n1):
        A[i] = input()

    n2 = int(input())
    B = [None] * n2
    for j in range(n2):
        B[j] = input()

    n3 = int(input())
    C = [None] * n3
    for k in range(n3):
        C[k] = input()
    a = 0
    U = [0] * 5
    for i, picture in enumerate(pictures):
        A_cnt = A.count(picture)
        B_cnt = B.count(picture)
        C_cnt = C.count(picture)
        U[i] = (A_cnt * B_cnt * C_cnt) * 5
        a += U[i] * coins[i]

    print(a / (n1 * n2 * n3))
    for i in range(5):
        print(U[i])


if __name__ == "__main__":
    main()
0