結果

問題 No.1593 Perfect Distance
ユーザー ki_ato_moki_ato_mo
提出日時 2021-07-10 18:22:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 173 ms / 2,000 ms
コード長 362 bytes
コンパイル時間 273 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 88,960 KB
最終ジャッジ日時 2024-07-02 02:43:36
合計ジャッジ時間 2,367 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
51,584 KB
testcase_01 AC 42 ms
51,840 KB
testcase_02 AC 41 ms
52,224 KB
testcase_03 AC 41 ms
51,712 KB
testcase_04 AC 41 ms
51,712 KB
testcase_05 AC 41 ms
51,968 KB
testcase_06 AC 41 ms
52,224 KB
testcase_07 AC 50 ms
59,136 KB
testcase_08 AC 54 ms
61,312 KB
testcase_09 AC 88 ms
76,032 KB
testcase_10 AC 88 ms
76,544 KB
testcase_11 AC 101 ms
77,824 KB
testcase_12 AC 121 ms
80,512 KB
testcase_13 AC 114 ms
80,356 KB
testcase_14 AC 131 ms
82,304 KB
testcase_15 AC 143 ms
84,864 KB
testcase_16 AC 173 ms
88,960 KB
testcase_17 AC 38 ms
51,816 KB
testcase_18 AC 38 ms
51,968 KB
testcase_19 AC 39 ms
52,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_left
n = int(input())
kai = []
if n == 1:
    print(0)
else:
    for i in range(1, n):
        kai.append(i ** 2)
    ans = 0
    for i in range(1, n):
        if bisect_left(kai, n ** 2 - i ** 2) == len(kai):
            continue
        if kai[bisect_left(kai, n ** 2 - i ** 2)] == n ** 2 - i ** 2:
            ans += 1
    print(ans)
0