結果
問題 |
No.1593 Perfect Distance
|
ユーザー |
![]() |
提出日時 | 2022-10-24 18:48:08 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 370 bytes |
コンパイル時間 | 1,631 ms |
コンパイル使用メモリ | 165,672 KB |
実行使用メモリ | 10,624 KB |
最終ジャッジ日時 | 2024-07-02 21:54:50 |
合計ジャッジ時間 | 6,866 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | -- * 3 |
other | AC * 12 TLE * 1 -- * 4 |
ソースコード
#include <bits/stdc++.h> using namespace std; bool is_square(long x){ for(long i=0;i*i<=x;i++){ if(i*i == x){ 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); }