結果
| 問題 |
No.1593 Perfect Distance
|
| コンテスト | |
| ユーザー |
merom686
|
| 提出日時 | 2021-07-09 21:25:32 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 3 ms / 2,000 ms |
| コード長 | 318 bytes |
| コンパイル時間 | 1,983 ms |
| コンパイル使用メモリ | 192,080 KB |
| 最終ジャッジ日時 | 2025-01-22 20:42:10 |
|
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 17 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
int main() {
int n;
cin >> n;
int r = 0;
ll t = n;
t *= t;
for (int i = 1; i < n; i++) {
ll x = i;
ll y = round(sqrt(t - x * x));
r += x * x + y * y == t;
}
cout << r << endl;
return 0;
}
merom686