CCF NOI 1172 單詞數 題解
阿新 • • 發佈:2017-10-18
fields () content ++ 算法 can 不同 noi algorithm
此文為博主原創題解,轉載時請通知博主,並把原文鏈接放在正文醒目位置。
題目鏈接: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 8char 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 }
CCF NOI 1172 單詞數 題解