結果

問題 No.2882 Comeback
ユーザー hiro1729hiro1729
提出日時 2024-09-07 12:55:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 57 ms / 2,000 ms
コード長 203 bytes
コンパイル時間 686 ms
コンパイル使用メモリ 82,552 KB
実行使用メモリ 70,420 KB
最終ジャッジ日時 2024-09-07 12:55:04
合計ジャッジ時間 3,357 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,188 KB
testcase_01 AC 34 ms
52,812 KB
testcase_02 AC 34 ms
53,072 KB
testcase_03 AC 32 ms
53,140 KB
testcase_04 AC 37 ms
52,340 KB
testcase_05 AC 39 ms
59,000 KB
testcase_06 AC 39 ms
58,812 KB
testcase_07 AC 40 ms
59,936 KB
testcase_08 AC 45 ms
58,800 KB
testcase_09 AC 41 ms
59,052 KB
testcase_10 AC 55 ms
68,768 KB
testcase_11 AC 54 ms
66,972 KB
testcase_12 AC 55 ms
68,460 KB
testcase_13 AC 54 ms
67,764 KB
testcase_14 AC 53 ms
66,724 KB
testcase_15 AC 57 ms
70,172 KB
testcase_16 AC 52 ms
67,072 KB
testcase_17 AC 54 ms
68,000 KB
testcase_18 AC 56 ms
70,044 KB
testcase_19 AC 55 ms
68,516 KB
testcase_20 AC 56 ms
68,952 KB
testcase_21 AC 56 ms
68,404 KB
testcase_22 AC 53 ms
70,032 KB
testcase_23 AC 55 ms
69,312 KB
testcase_24 AC 55 ms
70,420 KB
testcase_25 AC 34 ms
53,264 KB
testcase_26 AC 38 ms
52,436 KB
testcase_27 AC 36 ms
52,608 KB
testcase_28 AC 34 ms
53,264 KB
testcase_29 AC 36 ms
52,592 KB
testcase_30 AC 40 ms
60,124 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import isqrt

def f(n):
	return sum(2 * (n // k - k + 1) - 1 for k in range(1, isqrt(n) + 1))

for _ in range(int(input())):
	A, B = map(int, input().split())
	print(f(B) - f(A) - f(B - A - 1))
0