結果
問題 | No.1918 Simple Math ? |
ユーザー | tktk_snsn |
提出日時 | 2022-04-29 23:58:58 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,125 bytes |
コンパイル時間 | 327 ms |
コンパイル使用メモリ | 82,028 KB |
実行使用メモリ | 81,792 KB |
最終ジャッジ日時 | 2024-06-29 05:50:40 |
合計ジャッジ時間 | 5,776 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 83 ms
75,776 KB |
testcase_02 | AC | 86 ms
75,648 KB |
testcase_03 | AC | 82 ms
75,520 KB |
testcase_04 | AC | 92 ms
75,520 KB |
testcase_05 | AC | 95 ms
75,776 KB |
testcase_06 | TLE | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
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 | -- | - |
testcase_33 | -- | - |
ソースコード
def F(x): res = int(x ** 0.5) for i in range(-2, 3)[::-1]: if (res + i) * (res + i) <= x: return res + i def naive(a, N): res = 0 for i in range(1, N+1): print(i, F(a * i)) res += F(a * i) return res def ub(a, target): l = 0 r = 10 ** 18 while r - l > 1: m = (r + l) // 2 if a * m < target * target: l = m else: r = m return r def lb(a, target): l = 0 r = 10 ** 18 while r - l > 1: m = (r + l) // 2 if a * m < target * target: l = m else: r = m return r T = int(input()) for _ in range(T): a, N = map(int, input().split()) sq = int(N ** 0.5 + 1) lim = F(a * sq) ans = 0 for i in range(1, N + 1): tmp = F(a * i) if tmp >= lim: key = i break ans += tmp L = lim R = F(a * N) p = lb(a, L) for k in range(L, R+1): q = ub(a, k + 1) q = min(N + 1, q) ans += k * (q - p) p = q # print(ans, naive(a, N)) print(ans)