結果

問題 No.1063 ルートの計算 / Sqrt Calculation
ユーザー kpinkcatkpinkcat
提出日時 2023-08-26 18:50:40
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 3 ms / 2,000 ms
コード長 381 bytes
コンパイル時間 969 ms
コンパイル使用メモリ 102,936 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-07 14:22:24
合計ジャッジ時間 1,817 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 3 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 3 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 3 ms
6,944 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 3 ms
6,940 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 2 ms
6,944 KB
testcase_12 AC 3 ms
6,940 KB
testcase_13 AC 3 ms
6,944 KB
testcase_14 AC 2 ms
6,944 KB
testcase_15 AC 2 ms
6,940 KB
testcase_16 AC 3 ms
6,940 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'int main()':
main.cpp:22:25: warning: 'b' may be used uninitialized [-Wmaybe-uninitialized]
   22 |     cout << a << " " << b << endl;
      |                         ^
main.cpp:14:15: note: 'b' was declared here
   14 |     int n, a, b;
      |               ^
main.cpp:22:18: warning: 'a' may be used uninitialized [-Wmaybe-uninitialized]
   22 |     cout << a << " " << b << endl;
      |                  ^~~
main.cpp:14:12: note: 'a' was declared here
   14 |     int n, a, b;
      |            ^

ソースコード

diff #

#include<iostream>
#include<map>
#include<vector>
#include <algorithm>
#include<math.h>
#include <iomanip>
#include<set>
#include <numeric>
using namespace std;


int main()
{
    int n, a, b;
    cin >> n;
    for (int i = 1; i <= pow(n, 0.5); i++){
        if (!(n%i) && !((n/i)%i)){
            a = i;
            b = n/i/i;
        }
    }
    cout << a << " " << b << endl;
}
0