結果

問題 No.1252 数字根D
ユーザー rlangevinrlangevin
提出日時 2023-01-25 22:50:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 97 ms / 2,000 ms
コード長 233 bytes
コンパイル時間 210 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 76,288 KB
最終ジャッジ日時 2024-06-27 00:21:27
合計ジャッジ時間 2,121 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,224 KB
testcase_01 AC 38 ms
52,224 KB
testcase_02 AC 44 ms
52,352 KB
testcase_03 AC 71 ms
66,944 KB
testcase_04 AC 87 ms
76,032 KB
testcase_05 AC 93 ms
75,892 KB
testcase_06 AC 87 ms
76,136 KB
testcase_07 AC 88 ms
76,288 KB
testcase_08 AC 87 ms
76,012 KB
testcase_09 AC 86 ms
75,904 KB
testcase_10 AC 87 ms
76,288 KB
testcase_11 AC 86 ms
76,288 KB
testcase_12 AC 97 ms
76,032 KB
testcase_13 AC 87 ms
76,160 KB
testcase_14 AC 38 ms
52,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def f(a, d):
    if a <= 0:
        return 0
    q, r = divmod(a, d - 1)
    return q * d * (d - 1)//2 + r * (r + 1)//2

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