結果

問題 No.1593 Perfect Distance
ユーザー boatmusclesboatmuscles
提出日時 2021-07-09 21:35:02
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 10 ms / 2,000 ms
コード長 442 bytes
コンパイル時間 138 ms
コンパイル使用メモリ 27,648 KB
最終ジャッジ日時 2025-01-22 21:00:34
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 17
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:6:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    6 |     scanf("%llu", &N);
      |     ~~~~~^~~~~~~~~~~~

ソースコード

diff #

#include<cstdio>
using ull = unsigned long long;

int main(){
    ull N, ok, ng, mid, answer = 0;
    scanf("%llu", &N);
    ull square = N*N;
    for (ull a = 1; a < N; a++){
        ok = N - a, ng = N;
        while(ng - ok > 1){
            mid = ok + ng >>1;
            if(a*a + mid*mid <= square) ok = mid;
            else ng = mid;
        }
        if(a*a + ok*ok == square) answer++;
    }
    printf("%llu\n", answer);
	return 0;
}
0