結果

問題 No.1252 数字根D
ユーザー H3PO4H3PO4
提出日時 2022-02-03 09:01:41
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 39 ms / 2,000 ms
コード長 311 bytes
コンパイル時間 261 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-06-11 09:42:17
合計ジャッジ時間 1,099 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 14
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

input = sys.stdin.buffer.readline


def g(d, x):
    if x < 0: return 0
    div, mod = divmod(x, d - 1)
    return div * d * (d - 1) // 2 + mod * (mod + 1) // 2


def solve(d, A, B):
    return g(d, B) - g(d, A - 1)


T = int(input())
for _ in range(T):
    print(solve(*map(int, input().split())))
0