結果
問題 | No.1593 Perfect Distance |
ユーザー |
![]() |
提出日時 | 2022-10-24 18:45:54 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 366 bytes |
コンパイル時間 | 1,544 ms |
コンパイル使用メモリ | 165,264 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-02 21:53:06 |
合計ジャッジ時間 | 9,204 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | WA * 3 |
other | WA * 17 |
ソースコード
#include <bits/stdc++.h> using namespace std; bool is_square(int x){ for(int i=0;i*i<=x;i++){ if(i*i == x){ return true; } } return false; } int main(){ int N; int count = 0; scanf("%d",&N); for(int i=1;i<=N;i++){ if(is_square(N*N-i*i)){ count++; } } printf("%d",count); }