문제 링크https://www.acmicpc.net/problem/15829문제 내용소문자 알파벳의 연이은 문자열을 받을 때,L=문자열의 길이(small:1 ≤ L ≤ 5/large1ai=문자열의 i-1번째 문자에 해당하는 알파벳(a=1, b=2, ㆍ ㆍ , z=26)r=31, M=1234567891이 H 식 구현하기 50점 나온 코드#include #include #include typedef long long int llint;using namespace std;llint n,Mod=1234567891,ans,k[51];char ar[51];string L;int main(){ cin>>n; cin>>L; for(int i=0;ifor문 안에 있는 96의 경우 'A'의 아스키코드값에서 1을 뺀 ..