結果

問題 No.1593 Perfect Distance
ユーザー nehan_der_thalnehan_der_thal
提出日時 2021-07-09 21:49:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 94 ms / 2,000 ms
コード長 183 bytes
コンパイル時間 169 ms
コンパイル使用メモリ 82,196 KB
実行使用メモリ 91,904 KB
最終ジャッジ日時 2024-07-01 15:53:19
合計ジャッジ時間 2,768 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 88 ms
91,008 KB
testcase_01 AC 85 ms
90,496 KB
testcase_02 AC 94 ms
91,136 KB
testcase_03 AC 91 ms
90,880 KB
testcase_04 AC 89 ms
91,008 KB
testcase_05 AC 90 ms
90,880 KB
testcase_06 AC 89 ms
90,880 KB
testcase_07 AC 86 ms
90,368 KB
testcase_08 AC 87 ms
90,880 KB
testcase_09 AC 91 ms
91,648 KB
testcase_10 AC 89 ms
91,008 KB
testcase_11 AC 88 ms
91,392 KB
testcase_12 AC 90 ms
91,392 KB
testcase_13 AC 89 ms
91,136 KB
testcase_14 AC 92 ms
91,136 KB
testcase_15 AC 91 ms
91,904 KB
testcase_16 AC 89 ms
90,752 KB
testcase_17 AC 90 ms
91,264 KB
testcase_18 AC 85 ms
91,008 KB
testcase_19 AC 91 ms
91,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

vs = set()
for i in range(2*10**5):
    vs.add((i+1)**2)

N, = map(int, input().split())
N = N**2
d = 0
for i in range(2*10**5):
    i+=1
    if N-i**2 in vs:
        d += 1
print(d)
0