結果
問題 | No.781 円周上の格子点の数え上げ |
ユーザー | tso_moriri |
提出日時 | 2019-01-13 13:39:01 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 440 bytes |
コンパイル時間 | 76 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 17,824 KB |
最終ジャッジ日時 | 2024-06-07 16:08:00 |
合計ジャッジ時間 | 5,694 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 28 ms
10,752 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 29 ms
10,752 KB |
testcase_07 | AC | 29 ms
10,752 KB |
testcase_08 | AC | 30 ms
10,752 KB |
testcase_09 | AC | 30 ms
10,880 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | TLE | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
ソースコード
import math X,Y = map(int,input().split()) counterlist = [] for i in range(X,Y+1): counter = 0 for k in range(math.floor((i/2)**0.5),math.ceil(i**0.5)): if (i-k**2)**0.5-math.floor((i-k**2)**0.5)==0.0: if k-(i/2)**0.5 == 0.0 or k == 0: counter +=0.5 else: counter += 1 else: pass counterlist.append(counter) a = int(max(counterlist))*8 print(a)