답안 #83589

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
83589 2018-11-09T12:27:16 Z XBXJLeiLeLeiLe Mate (COCI18_mate) Python 2
0 / 100
24 ms 4068 KB
s = raw_input()
q = input()


def combination(n, d):
    k = d - 2
    if n - k < k:
        k = n - k
    result = 1
    for i in range(k):
        result *= n
        n -= 1
    for i in range(k):
        result /= k
        k -= 1
    return result


def mod(num):
    return num % (10**9+7)


def lst_id(letter):
    return ord(letter) - ord("a")

arr = [[0 for i in range(26)] for i in range(len(s))]

arr_c = [0] * 26
for i in range(len(s)-1, -1, -1):
    for j in range(26):
        arr[i][j] = arr_c[j]
    arr_c[lst_id(s[i])] += 1


arr_r = []
for i in range(q):
    d, xy = raw_input().split()
    total = 0
    d = int(d)
    x = xy[0]
    y = xy[1]
    for i in range(len(s)):
        if s[i] == x and i >= d - 2:
            total += mod(combination(i, d) * arr[i][lst_id(y)])
    arr_r.append(mod(total))

for i in arr_r:
    print i

# 결과 실행 시간 메모리 Grader output
1 Runtime error 14 ms 2936 KB Execution failed because the return code was nonzero
2 Runtime error 14 ms 3016 KB Execution failed because the return code was nonzero
3 Runtime error 14 ms 3016 KB Execution failed because the return code was nonzero
4 Runtime error 14 ms 3096 KB Execution failed because the return code was nonzero
5 Runtime error 14 ms 3264 KB Execution failed because the return code was nonzero
6 Runtime error 14 ms 3264 KB Execution failed because the return code was nonzero
7 Runtime error 14 ms 3264 KB Execution failed because the return code was nonzero
8 Runtime error 14 ms 3292 KB Execution failed because the return code was nonzero
9 Runtime error 20 ms 4028 KB Execution failed because the return code was nonzero
10 Runtime error 24 ms 4068 KB Execution failed because the return code was nonzero