結果
問題 | No.800 四平方定理 |
ユーザー | pasoconhoshii |
提出日時 | 2019-03-17 22:54:44 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,358 bytes |
コンパイル時間 | 161 ms |
コンパイル使用メモリ | 82,392 KB |
実行使用メモリ | 83,540 KB |
最終ジャッジ日時 | 2024-07-08 01:26:20 |
合計ジャッジ時間 | 7,936 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 211 ms
83,284 KB |
testcase_01 | AC | 374 ms
76,616 KB |
testcase_02 | AC | 288 ms
76,244 KB |
testcase_03 | AC | 270 ms
76,292 KB |
testcase_04 | AC | 237 ms
76,480 KB |
testcase_05 | AC | 265 ms
76,564 KB |
testcase_06 | AC | 462 ms
76,424 KB |
testcase_07 | AC | 396 ms
76,448 KB |
testcase_08 | AC | 744 ms
76,632 KB |
testcase_09 | AC | 432 ms
76,572 KB |
testcase_10 | TLE | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
ソースコード
N,D = map(int, input().split()) lst = [i**2 for i in range(1, N+1)] ans= 0 for i in range(N): x = lst[i] for j in range(N): y = lst[j] s = x+y-D # print("x,y, s: ", x,y,s) if s == 0: ans += N # print("equal get!") else: # $BLs?t%j%9%H(B divlst = [] s = abs(s) for div in range(1, int(s**0.5)+1): if s % div == 0: divlst.append( div ) divlst.append( s // div ) divlst = sorted( list( set( divlst) ) ) # print("\tdivlst: ", divlst) for a,b in zip(divlst, divlst[::-1]): if a * b == s and a <= b: # print("\t\ta,b: ", a,b) if ( a + b ) % 2 == 0: w = (a+b)//2 v = (b-a)//2 # print("\t w : ", w, "v: ", v) if 1 <= w <= N and 1 <= v <= N and w == v: ans += 1 # print("ans1 get!") elif 1 <= w <= N and 1 <= v <= N : ans += 1 # print("ans2 get!") else: break print(ans)