結果

問題 No.1252 数字根D
ユーザー rlangevinrlangevin
提出日時 2023-01-25 22:49:37
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 201 bytes
コンパイル時間 261 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 76,416 KB
最終ジャッジ日時 2024-06-27 00:20:54
合計ジャッジ時間 2,231 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,712 KB
testcase_01 AC 39 ms
52,096 KB
testcase_02 AC 39 ms
52,096 KB
testcase_03 AC 73 ms
66,816 KB
testcase_04 AC 86 ms
76,136 KB
testcase_05 AC 86 ms
76,416 KB
testcase_06 AC 95 ms
76,032 KB
testcase_07 AC 87 ms
76,032 KB
testcase_08 AC 85 ms
76,416 KB
testcase_09 AC 86 ms
76,160 KB
testcase_10 AC 89 ms
76,072 KB
testcase_11 AC 92 ms
76,160 KB
testcase_12 AC 85 ms
76,160 KB
testcase_13 AC 85 ms
76,348 KB
testcase_14 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

def f(a, d):
    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