結果
問題 | No.1593 Perfect Distance |
ユーザー |
![]() |
提出日時 | 2022-10-24 18:45:02 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 364 bytes |
コンパイル時間 | 1,702 ms |
コンパイル使用メモリ | 165,112 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-02 21:52:16 |
合計ジャッジ時間 | 6,077 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 WA * 1 |
other | AC * 3 WA * 14 |
ソースコード
#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-i*i)){ count++; } } printf("%d",count); }