結果
問題 | No.1593 Perfect Distance |
ユーザー | e869120 |
提出日時 | 2021-05-03 12:26:06 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 3 ms / 2,000 ms |
コード長 | 325 bytes |
コンパイル時間 | 527 ms |
コンパイル使用メモリ | 68,380 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-01 14:09:26 |
合計ジャッジ時間 | 1,275 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 17 |
ソースコード
#include <iostream> #include <cmath> using namespace std; long long N; long long Answer = 0; int main() { cin >> N; for (int x = 1; x <= N - 1; x++) { long long V = N * N - 1LL * x * x; long long y = (long long)(sqrt(1.0 * V) + 1.0e-9); if (x * x + y * y == N * N) Answer++; } cout << Answer << endl; return 0; }