結果
| 問題 |
No.1063 ルートの計算 / Sqrt Calculation
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2020-06-13 01:24:32 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 3 ms / 2,000 ms |
| コード長 | 335 bytes |
| コンパイル時間 | 2,139 ms |
| コンパイル使用メモリ | 191,048 KB |
| 最終ジャッジ日時 | 2025-01-11 03:24:19 |
|
ジャッジサーバーID (参考情報) |
judge1 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 14 |
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:20:30: warning: ‘A’ may be used uninitialized [-Wmaybe-uninitialized]
20 | cout << A << " " << n / (A * A) << endl;
| ~~~^~~~
main.cpp:14:7: note: ‘A’ was declared here
14 | int A;
| ^
ソースコード
#include <bits/stdc++.h>
using namespace std;
#define REP(i,n) for(int i=0; i<(int)(n); i++)
int main() {
ios_base::sync_with_stdio(0);
cin.tie(0);
int n;
cin >> n;
int A;
for (int a = 1; a * a <= n; a++) {
if (n % (a * a) == 0) {
A = a;
}
}
cout << A << " " << n / (A * A) << endl;
return 0;
}