結果
問題 | No.1063 ルートの計算 / Sqrt Calculation |
ユーザー | 蜜蜂 |
提出日時 | 2020-05-29 21:22:43 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 3 ms / 2,000 ms |
コード長 | 209 bytes |
コンパイル時間 | 1,558 ms |
コンパイル使用メモリ | 166,332 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-11-06 02:14:18 |
合計ジャッジ時間 | 2,121 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 14 |
ソースコード
#include <bits/stdc++.h> #define ll long long using namespace std; int main(){ ll n; cin>>n; for(ll i=100000;i>=1;i--){ if(n%(i*i)==0){ cout<<i<<" "<<n/(i*i)<<endl; return 0; } } }