結果
問題 | No.1063 ルートの計算 / Sqrt Calculation |
ユーザー | yicode |
提出日時 | 2023-05-19 11:20:28 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 704 bytes |
コンパイル時間 | 1,979 ms |
コンパイル使用メモリ | 176,828 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-05-10 00:21:54 |
合計ジャッジ時間 | 2,711 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | AC | 2 ms
6,944 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,944 KB |
testcase_06 | AC | 2 ms
6,944 KB |
testcase_07 | AC | 2 ms
6,944 KB |
testcase_08 | AC | 2 ms
6,944 KB |
testcase_09 | AC | 2 ms
6,940 KB |
testcase_10 | AC | 2 ms
6,940 KB |
testcase_11 | AC | 2 ms
6,944 KB |
testcase_12 | AC | 2 ms
6,944 KB |
testcase_13 | AC | 2 ms
6,944 KB |
testcase_14 | AC | 2 ms
6,940 KB |
testcase_15 | AC | 2 ms
6,940 KB |
testcase_16 | AC | 2 ms
6,944 KB |
コンパイルメッセージ
main.cpp: In function 'int main()': main.cpp:26:20: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17' [-Wc++17-extensions] 26 | for (const auto& [key, value] : dic) { | ^
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; using Graph = vector<vector<int>>; int main() { long long N; cin >> N; map<int,int> dic; int count = 0; while(true) { bool fire = false; for(int i = 2; i <= sqrt(N); i++) { if(N % i == 0) { N /= i; dic[i]++; fire = true; break; } } if(fire == false) { break; } } dic[N]++; int ans = 1; int a = 1; for (const auto& [key, value] : dic) { if(value % 2 == 0) { int x = value / 2; ans *= pow(key,x); }else { int x = (value - 1) / 2; ans *= pow(key,x); a *= key; } } cout <<ans<< " " << a << endl; }