結果
| 問題 |
No.1593 Perfect Distance
|
| コンテスト | |
| ユーザー |
N___hara
|
| 提出日時 | 2021-07-09 21:26:20 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 3 ms / 2,000 ms |
| コード長 | 403 bytes |
| コンパイル時間 | 1,972 ms |
| コンパイル使用メモリ | 191,612 KB |
| 最終ジャッジ日時 | 2025-01-22 20:45:11 |
|
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 17 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
int main() {
ios::sync_with_stdio(false);
cin.tie(0);
long long n;
cin >> n;
long long ans = 0;
long long x = 1;
long long y = n;
while (true) {
if (x >= n || y < 1) break;
if (x*x+y*y == n*n) {
ans++;
x++;
y--;
}
else if (x*x+y*y < n*n) {
x++;
}
else y--;
}
cout << ans << endl;
}
N___hara