結果

問題 No.1593 Perfect Distance
ユーザー 8989
提出日時 2022-02-12 01:57:18
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 244 bytes
コンパイル時間 276 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 69,376 KB
最終ジャッジ日時 2024-06-28 01:17:07
合計ジャッジ時間 6,919 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
56,832 KB
testcase_01 AC 40 ms
51,456 KB
testcase_02 AC 41 ms
51,584 KB
testcase_03 AC 40 ms
51,584 KB
testcase_04 AC 42 ms
51,968 KB
testcase_05 AC 40 ms
51,456 KB
testcase_06 AC 46 ms
58,496 KB
testcase_07 AC 55 ms
60,288 KB
testcase_08 AC 57 ms
62,336 KB
testcase_09 AC 269 ms
64,000 KB
testcase_10 TLE -
testcase_11 TLE -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
p = 0
for i in range(1,n + 1):
    if i**2 > n**2:
        break
    for j in range(1,n + 1):
        if i**2 + j**2 > n**2:
            break
        if i** 2 + j**2 == n**2:
            p += 1
            #print(i,j)
print(p)
0