結果

問題 No.781 円周上の格子点の数え上げ
ユーザー 👑 KazunKazun
提出日時 2020-10-27 04:21:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 316 ms / 2,000 ms
コード長 272 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 82,200 KB
実行使用メモリ 216,892 KB
最終ジャッジ日時 2024-07-21 21:49:50
合計ジャッジ時間 3,549 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,756 KB
testcase_01 AC 39 ms
53,220 KB
testcase_02 AC 38 ms
53,084 KB
testcase_03 AC 37 ms
52,628 KB
testcase_04 AC 38 ms
52,796 KB
testcase_05 AC 37 ms
53,424 KB
testcase_06 AC 44 ms
60,372 KB
testcase_07 AC 46 ms
60,596 KB
testcase_08 AC 265 ms
138,800 KB
testcase_09 AC 265 ms
138,712 KB
testcase_10 AC 44 ms
60,020 KB
testcase_11 AC 43 ms
60,684 KB
testcase_12 AC 292 ms
181,588 KB
testcase_13 AC 316 ms
216,892 KB
testcase_14 AC 54 ms
66,836 KB
testcase_15 AC 43 ms
60,368 KB
testcase_16 AC 42 ms
59,556 KB
testcase_17 AC 196 ms
154,616 KB
testcase_18 AC 165 ms
107,156 KB
testcase_19 AC 172 ms
109,676 KB
testcase_20 AC 187 ms
109,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

X,Y=map(int,input().split())

T=10**7
C=[0]*(Y+1)

x=0
while x*x<=Y:
    y=0
    while x*x+y*y<=Y:
        if x==y==0:
            C[0]+=1
        elif x==0 or y==0:
            C[x*x+y*y]+=2
        else:
            C[x*x+y*y]+=4
        y+=1
    x+=1

print(max(C[X:]))
0