Advertisement
erfanul007

UVa 10924

Jan 19th, 2019
162
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.05 KB | None | 0 0
  1. #include<bits/stdc++.h>
  2. using namespace std;
  3.  
  4. typedef long long int ll;
  5. typedef unsigned long long int ull;
  6. typedef vector<int> vi;
  7. typedef vector<ll> vll;
  8. typedef vector<vi> vvi;
  9. typedef pair<int,int > pii;
  10. typedef vector< pii > vpii;
  11. typedef set<int> sti;
  12.  
  13. #define sc scanf
  14. #define pf printf
  15. #define sci(n) scanf("%d",&n)
  16. #define scl(n) scanf("%lld",&n)
  17. #define scf(n) scanf("%lf",&n)
  18. #define pfi(n) printf("%d",n)
  19. #define pfl(n) printf("%lld",n)
  20. #define pff(n) cout<<n
  21. #define line printf("\n")
  22. #define spc printf(" ")
  23. #define loop(i,x,y) for(int i=int(x); i<=int(y); i++)
  24. #define rloop(i,y,x) for(int i=int(y); i>=int(x); i--)
  25. #define cspf(i) printf("Case %d: ", i)
  26. #define pb push_back
  27. #define mp make_pair
  28. #define ff first
  29. #define ss second
  30. #define all(v) v.begin(),v.end()
  31. #define rall(v) v.rbegin(),v.rend()
  32. #define read() freopen("input.txt", "r", stdin)
  33. #define write() freopen("output.txt", "w", stdout)
  34. /// Constants
  35. #define eps 1e-9
  36. #define PI acos(-1.0) // 3.1415926535897932
  37.  
  38. vi chk(2000);
  39.  
  40. void seive(){
  41. chk[0]=1;
  42. chk[1]=0;
  43. for(int i=2;i<=1500;i++){
  44. if(chk[i]==1)
  45. continue;
  46. for(int j=2;i*j<=1500;j++){
  47. chk[i*j]=1;
  48. }
  49. }
  50. }
  51.  
  52.  
  53. int main()
  54. {
  55. seive();
  56. read();
  57. write();
  58. char a[30];
  59. int j=0;
  60. while(scanf("%s",a)!=EOF){
  61. j++;
  62. int ln=strlen(a);
  63. int x,sm=0;
  64. loop(i,0,ln-1){
  65. if(a[i]>='A' && a[i]<='Z')
  66. x=a[i]-38;
  67. else if(a[i]>='a' && a[i]<='z')
  68. x=a[i]-96;
  69. sm+=x;
  70. }
  71. //cspf(j);
  72. if(chk[sm]==1)
  73. pf("It is not a prime word.\n");
  74. else
  75. pf("It is a prime word.\n");
  76. }
  77. return 0;
  78. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement