标签:print 算法 math char printf style 设计 class 产生
此文为博主原创题解,转载时请通知博主,并把原文链接放在正文醒目位置。
题目链接:http://oj.noi.cn/oj/#main/show/1172
分析:
挺水的_(:з」∠)_乘法原理。眼花了以为这是个不错的题...
AC代码:
1 #include<cstdio> 2 #include<algorithm> 3 #include<cstring> 4 #include<cmath> 5 6 const int MOD = 10007; 7 8 char s[200]; 9 long long ans = 1; 10 11 int main() 12 { 13 scanf("%s",s); 14 int n = strlen(s); 15 for(int i = 0;i < n;++ i) 16 ans = ans*(s[i]-‘a‘+1)%MOD; 17 printf("%lld\n",ans); 18 return 0; 19 }
标签:print 算法 math char printf style 设计 class 产生
原文地址:http://www.cnblogs.com/shingen/p/7689285.html