結果
| 問題 |
No.300 平方数
|
| コンテスト | |
| ユーザー |
syoken_desuka
|
| 提出日時 | 2015-11-13 22:34:38 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 2,280 bytes |
| コンパイル時間 | 1,346 ms |
| コンパイル使用メモリ | 158,916 KB |
| 実行使用メモリ | 6,948 KB |
| 最終ジャッジ日時 | 2024-09-13 14:40:39 |
| 合計ジャッジ時間 | 2,527 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 20 WA * 23 |
コンパイルメッセージ
main.cpp:29:9: warning: ISO C++11 requires whitespace after the macro name
29 | #define DEBUG1{}
| ^~~~~~
main.cpp:29: warning: "DEBUG1" redefined
29 | #define DEBUG1{}
|
main.cpp:24: note: this is the location of the previous definition
24 | #define DEBUG1(var0) { std::cerr << ( #var0 ) << "=" << ( var0 ) << endl; }
|
main.cpp:30:9: warning: ISO C++11 requires whitespace after the macro name
30 | #define DEBUG2{}
| ^~~~~~
main.cpp:30: warning: "DEBUG2" redefined
30 | #define DEBUG2{}
|
main.cpp:25: note: this is the location of the previous definition
25 | #define DEBUG2(var0, var1) { std::cerr << ( #var0 ) << "=" << ( var0 ) << ", "; DEBUG1(var1); }
|
main.cpp:31:9: warning: ISO C++11 requires whitespace after the macro name
31 | #define DEBUG3{}
| ^~~~~~
main.cpp:31: warning: "DEBUG3" redefined
31 | #define DEBUG3{}
|
main.cpp:26: note: this is the location of the previous definition
26 | #define DEBUG3(var0, var1, var2) { std::cerr << ( #var0 ) << "=" << ( var0 ) << ", "; DEBUG2(var1, var2); }
|
main.cpp:32:9: warning: ISO C++11 requires whitespace after the macro name
32 | #define DEBUG4{}
| ^~~~~~
main.cpp:32: warning: "DEBUG4" redefined
32 | #define DEBUG4{}
|
main.cpp:27: note: this is the location of the previous definition
27 | #define DEBUG4(var0, var1, var2, var3) { std::cerr << ( #var0 ) << "=" << ( var0 ) << ", "; DEBUG3(var1, var2, var3); }
|
ソースコード
#include "bits/stdc++.h"
using namespace std;
//諸機能
#pragma region MACRO
#define ANSWER(x) cerr << "answer: "; cout << (x) << endl
#define DOUBLE_ANSWER(x) cerr << "answer: "; cout << setprecision(10) << (double)(x) << endl
#define REP(i,a,n) for(int i=(a); i<(int)(n); i++)
#define RREP(i,a,n) for(int i=(int)(n); i>= a; i--)
#define rep(i,n) REP(i,0,n)
#define rrep(i,n) RREP(i,0,n)
#define ALL(a) begin((a)),end((a))
#define FILL(a,n) for(auto &hoge : (a)) hoge = (n)
#define mp make_pair
#define EXIST(container, n) ((container).find((n)) != (container).end())
#define STOI(s,i,l) stoi(SUBSTR(s,i,l))
#define SUBSTR(s,i,l) string((s), (i), (l))
#define NPI_TO_RAD(x) (180.0*x/PI)
#define RAD_TO_NPI(x) (PI/180.0*x)
#pragma endregion
//デバッグなどの支援
#pragma region CODING_SUPPORT
#define DEBUG1(var0) { std::cerr << ( #var0 ) << "=" << ( var0 ) << endl; }
#define DEBUG2(var0, var1) { std::cerr << ( #var0 ) << "=" << ( var0 ) << ", "; DEBUG1(var1); }
#define DEBUG3(var0, var1, var2) { std::cerr << ( #var0 ) << "=" << ( var0 ) << ", "; DEBUG2(var1, var2); }
#define DEBUG4(var0, var1, var2, var3) { std::cerr << ( #var0 ) << "=" << ( var0 ) << ", "; DEBUG3(var1, var2, var3); }
#ifndef _DEBUG //デバッグでないなら、計算時間短縮のためにエラー出力を無効化
#define DEBUG1{}
#define DEBUG2{}
#define DEBUG3{}
#define DEBUG4{}
#endif
//typedef(書き換える、書き足す可能性ある)
#pragma region TYPE_DEF
typedef long long ll;
typedef pair<int,int> pii;
typedef pair<string,string> pss;
typedef pair<int,string>pis;
typedef pair<string,int>psi;
typedef vector<string> vs;
typedef vector<int> vi;
#pragma endregion
//諸々の定数(書き換える可能性ある)
#pragma region CONST_VAL
#define PI (2*acos(0.0))
#define EPS (1e-9)
#define MOD (int)(1e9 + 7)
#pragma endregion
int main()
{
ll x;
cin >> x;
ll y = 1;
int count = 0;
ll mod = 2;
while (x != 1 && mod < 100001)
{
if ( x % mod == 0 )
{
if (count == 0)
{
count = 1;
}
else
{
count++;
}
x /= mod;
}
else
{
if (count == 0)
{
mod++;
continue;
}
if (count % 2 != 0)
{
y *= mod;
}
count = 0;
mod++;
}
}
if (count % 2 != 0 )
{
y *= mod;
}
ANSWER(y);
return 0;
}
syoken_desuka