結果

問題 No.1252 数字根D
ユーザー brthyyjpbrthyyjp
提出日時 2020-10-10 15:06:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 99 ms / 2,000 ms
コード長 270 bytes
コンパイル時間 170 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 76,544 KB
最終ジャッジ日時 2024-07-20 15:59:51
合計ジャッジ時間 1,920 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,712 KB
testcase_01 AC 37 ms
52,224 KB
testcase_02 AC 37 ms
52,224 KB
testcase_03 AC 65 ms
66,432 KB
testcase_04 AC 95 ms
76,416 KB
testcase_05 AC 91 ms
76,416 KB
testcase_06 AC 88 ms
76,416 KB
testcase_07 AC 98 ms
76,416 KB
testcase_08 AC 99 ms
76,416 KB
testcase_09 AC 98 ms
75,904 KB
testcase_10 AC 87 ms
76,160 KB
testcase_11 AC 86 ms
75,904 KB
testcase_12 AC 87 ms
76,544 KB
testcase_13 AC 88 ms
76,160 KB
testcase_14 AC 37 ms
51,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

t = int(input())

def func(x, d):
    q, r = divmod(x, d-1)
    ans = q*(d-1)*d//2
    ans += r*(r+1)//2
    return ans

for _ in range(t):
    d, a, b = map(int, input().split())
    if a != 0:
        print(func(b, d)-func(a-1, d))
    else:
        print(func(b, d))
0