結果
| 問題 |
No.889 素数!
|
| コンテスト | |
| ユーザー |
tarattata1
|
| 提出日時 | 2019-09-20 22:38:54 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
AC
|
| 実行時間 | 6 ms / 2,000 ms |
| コード長 | 2,098 bytes |
| コンパイル時間 | 751 ms |
| コンパイル使用メモリ | 79,208 KB |
| 実行使用メモリ | 5,376 KB |
| 最終ジャッジ日時 | 2024-09-14 18:38:09 |
| 合計ジャッジ時間 | 2,608 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge6 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 61 |
コンパイルメッセージ
main.cpp: In function ‘int main(int, char**)’:
main.cpp:67:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
67 | scanf("%lld", &n);
| ~~~~~^~~~~~~~~~~~
ソースコード
#include <stdio.h>
#include <string>
#include <cstring>
#include <stdlib.h>
#include <math.h>
#include <algorithm>
#include <vector>
#include <set>
#include <map>
#include <queue>
#include <stack>
#include <list>
#include <iterator>
#include <assert.h>
#pragma warning(disable:4996)
typedef long long ll;
#define MIN(a, b) ((a)>(b)? (b): (a))
#define MAX(a, b) ((a)<(b)? (b): (a))
#define LINF 9223300000000000000
#define INF 2140000000
const long long MOD = 1000000007;
using namespace std;
vector<int> pp;
void preparePrime( int maxp )
{
int i;
vector<int> a(maxp+1);
for(i=2; i<=maxp; i++) {
int k=i+i;
while(k<=maxp) {
a[k]=1;
k+=i;
}
}
for(i=2; i<=maxp; i++) {
if(a[i]==0) pp.push_back( i );
}
return;
}
void decompositPrime( ll a, vector<pair<ll,ll> >& vv )
{
preparePrime( (int)sqrt((double)a)+1 );
int i;
for(i=0; i<(int)pp.size(); i++) {
int count = 0;
while(a % pp[i] == 0 ) {
a /= pp[i];
count ++;
}
if(count>0) vv.push_back( make_pair( pp[i], count ) );
if (a==1) break;
}
if(a>1) {
vv.push_back( make_pair( a, 1 ) );
}
return;
}
int main(int argc, char* argv[])
{
ll n;
scanf("%lld", &n);
if(n<=1) {
printf("%lld\n", n); return 0;
}
int m=(int)sqrt((double)n+0.1);
if(m*m==n) {
printf("Heihosu!\n"); return 0;
}
m=(int)(pow((double)n, (double)1/3)+0.1);
if(m*m*m==n) {
printf("Ripposu!\n"); return 0;
}
vector<pair<ll,ll> > vv;
decompositPrime( n, vv );
int siz=(int)vv.size();
if(siz==1 && vv[0].second==1) {
printf("Sosu!\n"); return 0;
}
int i, k;
ll ans=1;
for(i=0; i<siz; i++) {
ll sum=0;
ll curr=1;
for(k=0; k<=vv[i].second; k++) {
if(k>0) curr*=vv[i].first;
sum += curr;
}
ans *= sum;
}
if(n*2==ans) {
printf("Kanzensu!\n");
}
else {
printf("%lld\n", n);
}
return 0;
}
tarattata1