結果

問題 No.1593 Perfect Distance
ユーザー gr1msl3ygr1msl3y
提出日時 2021-11-27 17:25:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 83 ms / 2,000 ms
コード長 124 bytes
コンパイル時間 151 ms
コンパイル使用メモリ 82,556 KB
実行使用メモリ 90,928 KB
最終ジャッジ日時 2024-06-30 08:19:26
合計ジャッジ時間 2,123 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,012 KB
testcase_01 AC 37 ms
51,984 KB
testcase_02 AC 36 ms
52,348 KB
testcase_03 AC 37 ms
51,984 KB
testcase_04 AC 36 ms
52,628 KB
testcase_05 AC 37 ms
52,556 KB
testcase_06 AC 36 ms
53,660 KB
testcase_07 AC 38 ms
52,632 KB
testcase_08 AC 38 ms
52,984 KB
testcase_09 AC 45 ms
60,860 KB
testcase_10 AC 47 ms
62,800 KB
testcase_11 AC 51 ms
68,428 KB
testcase_12 AC 58 ms
71,944 KB
testcase_13 AC 61 ms
72,072 KB
testcase_14 AC 64 ms
74,812 KB
testcase_15 AC 73 ms
80,988 KB
testcase_16 AC 83 ms
90,928 KB
testcase_17 AC 38 ms
52,728 KB
testcase_18 AC 38 ms
52,428 KB
testcase_19 AC 37 ms
52,696 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
M = N**2
S = {i**2 for i in range(1, N)}
ans = 0
for i in range(1, N):
    ans += (M-i**2 in S)
print(ans)
0