結果

問題 No.800 四平方定理
ユーザー flippergoflippergo
提出日時 2024-10-14 09:38:20
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 281 bytes
コンパイル時間 257 ms
コンパイル使用メモリ 82,168 KB
実行使用メモリ 470,380 KB
最終ジャッジ日時 2024-10-14 09:39:03
合計ジャッジ時間 40,473 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
75,920 KB
testcase_01 AC 72 ms
87,816 KB
testcase_02 AC 65 ms
80,756 KB
testcase_03 AC 66 ms
82,416 KB
testcase_04 AC 63 ms
79,284 KB
testcase_05 AC 67 ms
80,588 KB
testcase_06 AC 80 ms
93,368 KB
testcase_07 AC 73 ms
85,896 KB
testcase_08 AC 76 ms
92,472 KB
testcase_09 AC 75 ms
87,888 KB
testcase_10 AC 1,347 ms
310,040 KB
testcase_11 AC 1,395 ms
283,496 KB
testcase_12 AC 1,423 ms
283,640 KB
testcase_13 AC 1,280 ms
283,488 KB
testcase_14 AC 1,419 ms
284,004 KB
testcase_15 AC 1,463 ms
282,764 KB
testcase_16 AC 1,455 ms
360,596 KB
testcase_17 AC 1,406 ms
360,956 KB
testcase_18 AC 1,448 ms
360,596 KB
testcase_19 AC 1,505 ms
360,724 KB
testcase_20 AC 36 ms
52,476 KB
testcase_21 AC 35 ms
52,624 KB
testcase_22 AC 1,550 ms
361,116 KB
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 AC 36 ms
52,684 KB
testcase_27 AC 34 ms
52,480 KB
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

N,D = map(int,input().split())
C = {i:0 for i in range(-N**2+1,N**2)}
for z in range(1,N+1):
    for w in range(1,N+1):
        C[z**2-w**2] += 1
ans = 0
for x in range(1,N+1):
    for y in range(1,N+1):
        a = D-x**2-y**2
        if a in C:
            ans += C[a]
print(ans)
0