結果

問題 No.1063 ルートの計算 / Sqrt Calculation
ユーザー Jalil Sami SajidJalil Sami Sajid
提出日時 2020-05-29 21:30:28
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 390 bytes
コンパイル時間 1,637 ms
コンパイル使用メモリ 166,312 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-06 02:34:03
合計ジャッジ時間 2,331 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 WA -
testcase_04 AC 2 ms
6,820 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 2 ms
6,816 KB
testcase_08 WA -
testcase_09 AC 2 ms
6,820 KB
testcase_10 AC 2 ms
6,820 KB
testcase_11 AC 2 ms
6,820 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define endl '\n'
#define ll long long
using namespace std;


void lok(){
}

int main() {
    ios::sync_with_stdio(0);
    cin.tie(0);
    int t;
    cin>>t;
    int p=floor(sqrt(t));
    if(p*p==t){
    	cout<<p<<" 1"<<endl;
    	return 0;
    }
    while(true){
    	p--;
    	if(t%(p*p)==0){
    		cout<<p<<' '<<t/p<<endl;
    		break;
    	}
    }
	return 0;
}
0