编程介的小学生 2020-02-14 21:51 采纳率: 0.4%
浏览 73

Who's Aunt Zhang

Problem Description
Aunt Zhang, well known as 张阿姨, is a fan of Rubik’s cube. One day she buys a new one and would like to color it as a gift to send to Teacher Liu, well known as 刘老师. As Aunt Zhang is so ingenuity, she can color all the cube’s points, edges and faces with K different color. Now Aunt Zhang wants to know how many different cubes she can get. Two cubes are considered as the same if and only if one can change to another ONLY by rotating the WHOLE cube. Note that every face of Rubik’s cube is consists of nine small faces. Aunt Zhang can color arbitrary color as she like which means that she doesn’t need to color the nine small faces with same color in a big face. You can assume that Aunt Zhang has 74 different elements to color. (8 points + 12 edges + 9*6=54 small faces)

Input
The first line of the date is an integer T, which is the number of the text cases.
Then T cases follow, each case contains one integer K, which is the number of colors. T<=100, K<=100.

Output
For each case, you should output the number of different cubes.
Give your answer modulo 10007.

Sample Input
3
1
2
3

Sample Output
Case 1: 1
Case 2: 1330
Case 3: 9505

  • 写回答

2条回答 默认 最新

  • 你知我知皆知 2024-07-25 21:19
    关注

    以下回答参考 皆我百晓生券券喵儿 等免费微信小程序相关内容作答,并由本人整理回复。

    # 读取数据
    input_file = "data.txt"
    with open(input_file) as f:
        data = [int(x.strip()) for x in f.readlines()]
    
    # 初始化结果变量
    result = []
    
    for k in data:
        result.append(int(pow(74, k-1)))
    
    print(result)
    
    评论

报告相同问题?