結果

問題 No.1593 Perfect Distance
ユーザー 👑 rin204rin204
提出日時 2021-07-09 21:49:47
言語 PyPy3
(7.3.13)
結果
AC  
実行時間 94 ms / 2,000 ms
コード長 131 bytes
コンパイル時間 268 ms
コンパイル使用メモリ 87,368 KB
実行使用メモリ 76,808 KB
最終ジャッジ日時 2023-09-14 08:30:11
合計ジャッジ時間 2,883 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 68 ms
71,340 KB
testcase_01 AC 69 ms
71,520 KB
testcase_02 AC 70 ms
71,464 KB
testcase_03 AC 73 ms
71,708 KB
testcase_04 AC 69 ms
71,744 KB
testcase_05 AC 71 ms
71,784 KB
testcase_06 AC 71 ms
71,928 KB
testcase_07 AC 71 ms
71,840 KB
testcase_08 AC 71 ms
71,632 KB
testcase_09 AC 79 ms
76,808 KB
testcase_10 AC 77 ms
76,252 KB
testcase_11 AC 80 ms
76,500 KB
testcase_12 AC 84 ms
76,376 KB
testcase_13 AC 83 ms
76,444 KB
testcase_14 AC 87 ms
76,376 KB
testcase_15 AC 94 ms
76,448 KB
testcase_16 AC 91 ms
76,296 KB
testcase_17 AC 69 ms
71,852 KB
testcase_18 AC 68 ms
71,516 KB
testcase_19 AC 70 ms
71,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
ans = 0
for i in range(1, n):
    jj = n * n - i * i
    if jj == int(jj ** 0.5) ** 2:
        ans += 1
print(ans)
0