結果

問題 No.2392 二平方和
ユーザー Orifxon Husanov
提出日時 2023-07-28 23:11:44
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 502 bytes
コンパイル時間 577 ms
コンパイル使用メモリ 67,208 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-06 21:14:42
合計ジャッジ時間 1,423 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 26
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <cmath>
using namespace std;

int main() {
    int n;
    cin >> n;

    // Since i and j should be non-negative (i*i and j*j are non-negative),
    // we only need to check up to the square root of n.
    int maxLimit = sqrt(n);

    for (int i = 0; i <= maxLimit; i++) {
        int jSquared = n - i * i;
        int j = sqrt(jSquared);

        if (j * j == jSquared) {
            cout << "Yes";
            return 0;
        }
    }

    cout << "No";
    return 0;
}
0