結果

問題 No.1593 Perfect Distance
ユーザー osm ibtosm ibt
提出日時 2021-07-10 12:23:23
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 138 bytes
コンパイル時間 206 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 65,792 KB
最終ジャッジ日時 2024-07-02 01:52:53
合計ジャッジ時間 7,182 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
56,960 KB
testcase_01 AC 42 ms
51,456 KB
testcase_02 AC 42 ms
51,200 KB
testcase_03 AC 46 ms
51,712 KB
testcase_04 AC 41 ms
51,456 KB
testcase_05 AC 42 ms
51,200 KB
testcase_06 AC 45 ms
57,216 KB
testcase_07 AC 48 ms
57,600 KB
testcase_08 AC 49 ms
59,520 KB
testcase_09 AC 304 ms
60,032 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())
ret = 0
for x in range(1, n):
    for y in range(1, n):
        if x * x + y * y == n*n:
            ret += 1
print(ret)
0