結果
問題 | No.1593 Perfect Distance |
ユーザー |
![]() |
提出日時 | 2022-10-24 18:54:42 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 387 bytes |
コンパイル時間 | 1,586 ms |
コンパイル使用メモリ | 165,640 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-07-02 22:00:30 |
合計ジャッジ時間 | 2,313 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | WA * 3 |
other | AC * 4 WA * 13 |
ソースコード
#include <bits/stdc++.h> using namespace std; /* N^2-x^2=y^2 */ bool is_square(long x){ double p = sqrt(x)* sqrt(x) - (double)x; if(p == 0.0){ return true; } return false; } int main(){ long N; int count = 0; scanf("%ld",&N); for(long i=1;i<N;i++){ if(is_square(N*N-i*i)){ count++; } } printf("%d",count); }