結果

問題 No.889 素数!
ユーザー LayCurseLayCurse
提出日時 2019-09-21 11:11:34
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 3,576 bytes
コンパイル時間 2,556 ms
コンパイル使用メモリ 213,924 KB
実行使用メモリ 4,348 KB
最終ジャッジ日時 2023-10-17 15:04:19
合計ジャッジ時間 6,067 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,348 KB
testcase_01 AC 2 ms
4,348 KB
testcase_02 AC 2 ms
4,348 KB
testcase_03 AC 2 ms
4,348 KB
testcase_04 AC 2 ms
4,348 KB
testcase_05 AC 2 ms
4,348 KB
testcase_06 AC 2 ms
4,348 KB
testcase_07 AC 2 ms
4,348 KB
testcase_08 AC 2 ms
4,348 KB
testcase_09 AC 2 ms
4,348 KB
testcase_10 AC 2 ms
4,348 KB
testcase_11 AC 2 ms
4,348 KB
testcase_12 AC 2 ms
4,348 KB
testcase_13 AC 2 ms
4,348 KB
testcase_14 AC 2 ms
4,348 KB
testcase_15 AC 2 ms
4,348 KB
testcase_16 AC 2 ms
4,348 KB
testcase_17 AC 2 ms
4,348 KB
testcase_18 AC 2 ms
4,348 KB
testcase_19 AC 2 ms
4,348 KB
testcase_20 AC 2 ms
4,348 KB
testcase_21 AC 2 ms
4,348 KB
testcase_22 AC 2 ms
4,348 KB
testcase_23 AC 2 ms
4,348 KB
testcase_24 AC 2 ms
4,348 KB
testcase_25 AC 2 ms
4,348 KB
testcase_26 AC 2 ms
4,348 KB
testcase_27 AC 2 ms
4,348 KB
testcase_28 AC 2 ms
4,348 KB
testcase_29 AC 2 ms
4,348 KB
testcase_30 AC 2 ms
4,348 KB
testcase_31 AC 2 ms
4,348 KB
testcase_32 AC 2 ms
4,348 KB
testcase_33 AC 1 ms
4,348 KB
testcase_34 AC 2 ms
4,348 KB
testcase_35 AC 2 ms
4,348 KB
testcase_36 AC 2 ms
4,348 KB
testcase_37 AC 2 ms
4,348 KB
testcase_38 AC 2 ms
4,348 KB
testcase_39 AC 2 ms
4,348 KB
testcase_40 AC 2 ms
4,348 KB
testcase_41 AC 2 ms
4,348 KB
testcase_42 AC 2 ms
4,348 KB
testcase_43 AC 2 ms
4,348 KB
testcase_44 AC 2 ms
4,348 KB
testcase_45 AC 2 ms
4,348 KB
testcase_46 AC 2 ms
4,348 KB
testcase_47 AC 2 ms
4,348 KB
testcase_48 AC 2 ms
4,348 KB
testcase_49 AC 2 ms
4,348 KB
testcase_50 AC 2 ms
4,348 KB
testcase_51 AC 2 ms
4,348 KB
testcase_52 AC 2 ms
4,348 KB
testcase_53 AC 2 ms
4,348 KB
testcase_54 AC 2 ms
4,348 KB
testcase_55 AC 2 ms
4,348 KB
testcase_56 AC 2 ms
4,348 KB
testcase_57 AC 2 ms
4,348 KB
testcase_58 AC 2 ms
4,348 KB
testcase_59 AC 2 ms
4,348 KB
testcase_60 AC 2 ms
4,348 KB
testcase_61 AC 2 ms
4,348 KB
testcase_62 AC 2 ms
4,348 KB
testcase_63 AC 2 ms
4,348 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC optimize ("Ofast")
#include<bits/stdc++.h>
using namespace std;
void *wmem;
char memarr[96000000];
template<class S, class T> inline S max_L(S a,T b){
  return a>=b?a:b;
}
template<class T> inline void walloc1d(T **arr, int x, void **mem = &wmem){
  static int skip[16] = {0, 15, 14, 13, 12, 11, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1};
  (*mem) = (void*)( ((char*)(*mem)) + skip[((unsigned long long)(*mem)) & 15] );
  (*arr)=(T*)(*mem);
  (*mem)=((*arr)+x);
}
inline void rd(int &x){
  int k;
  int m=0;
  x=0;
  for(;;){
    k = getchar_unlocked();
    if(k=='-'){
      m=1;
      break;
    }
    if('0'<=k&&k<='9'){
      x=k-'0';
      break;
    }
  }
  for(;;){
    k = getchar_unlocked();
    if(k<'0'||k>'9'){
      break;
    }
    x=x*10+k-'0';
  }
  if(m){
    x=-x;
  }
}
inline void wt_L(char a){
  putchar_unlocked(a);
}
inline void wt_L(int x){
  int s=0;
  int m=0;
  char f[10];
  if(x<0){
    m=1;
    x=-x;
  }
  while(x){
    f[s++]=x%10;
    x/=10;
  }
  if(!s){
    f[s++]=0;
  }
  if(m){
    putchar_unlocked('-');
  }
  while(s--){
    putchar_unlocked(f[s]+'0');
  }
}
inline void wt_L(const char c[]){
  int i=0;
  for(i=0;c[i]!='\0';i++){
    putchar_unlocked(c[i]);
  }
}
template<class T> inline int isPrime_L(T n){
  T i;
  if(n<=1){
    return 0;
  }
  if(n<=3){
    return 1;
  }
  if(n%2==0){
    return 0;
  }
  for(i=3;i*i<=n;i+=2){
    if(n%i==0){
      return 0;
    }
  }
  return 1;
}
template<class T> int Factor_L(T N, T fac[], int fs[]){
  T i;
  int sz = 0;
  if(N%2==0){
    fac[sz] = 2;
    fs[sz] = 1;
    N /= 2;
    while(N%2==0){
      N /= 2;
      fs[sz]++;
    }
    sz++;
  }
  for(i=3;i*i<=N;i+=2){
    if(N%i==0){
      fac[sz] = i;
      fs[sz] = 1;
      N /= i;
      while(N%i==0){
        N /= i;
        fs[sz]++;
      }
      sz++;
    }
  }
  if(N > 1){
    fac[sz] = N;
    fs[sz] = 1;
    sz++;
  }
  return sz;
}
long long DivisorSum_L(long long n, void *mem = wmem){
  int i;
  long long res;
  long long t;
  long long s;
  int fs;
  int *fn;
  long long *fc;
  if(n<=0){
    return 0;
  }
  walloc1d(&fc, 30);
  walloc1d(&fn, 30);
  fs =Factor_L(n, fc, fn);
  res = 1;
  for(i=(0);i<(fs);i++){
    int j;
    s = t = 1;
    for(j=(0);j<(fn[i]);j++){
      t *= fc[i];
      s += t;
    }
    res *= s;
  }
  return res;
}
template<class T> inline T pow2_L(T a){
  return a*a;
}
template<class T> inline T pow3_L(T a){
  return a*a*a;
}
inline long long Isqrt_s_L(const long long n){
  long long r = sqrt(n);
  r =max_L(r-2, 0);
  while(pow2_L((r+1))<= n ){
    r++;
  }
  if(r*r!=n){
    r = -1;
  }
  return r;
}
inline long long Icbrt_s_L(const long long n){
  long long r = pow(n, 1.0/3);
  r =max_L(r-2, 0);
  while(pow3_L((r+1))<= n ){
    r++;
  }
  if(pow3_L(r)!=n){
    r = -1;
  }
  return r;
}
int N;
int main(){
  wmem = memarr;
  rd(N);
  if(N<2){
    wt_L(N);
    wt_L('\n');
    return 0;
  }
  if(isPrime_L(N)){
    wt_L("Sosu!");
    wt_L('\n');
    return 0;
  }
  if(Isqrt_s_L(N)>= 2){
    wt_L("Heihosu!");
    wt_L('\n');
    return 0;
  }
  if(Icbrt_s_L(N)>= 2){
    wt_L("Ripposu!");
    wt_L('\n');
    return 0;
  }
  if(2*N ==DivisorSum_L(N)){
    wt_L("Kanzensu!");
    wt_L('\n');
    return 0;
  }
  wt_L(N);
  wt_L('\n');
  return 0;
}
// cLay varsion 20190921-1 [beta]

// --- original code ---
// int N;
// {
//   rd(N);
//   if(N<2) wt(N), return 0;
//   if(isPrime(N)) wt("Sosu!"), return 0;
//   if(Isqrt_s(N) >= 2) wt("Heihosu!"), return 0;
//   if(Icbrt_s(N) >= 2) wt("Ripposu!"), return 0;
//   if(2N == DivisorSum(N)) wt("Kanzensu!"), return 0;
//   wt(N);
// }
0