結果

問題 No.1252 数字根D
ユーザー 👑 KazunKazun
提出日時 2020-12-14 08:03:01
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 169 bytes
コンパイル時間 249 ms
コンパイル使用メモリ 81,848 KB
実行使用メモリ 76,584 KB
最終ジャッジ日時 2024-09-20 00:30:46
合計ジャッジ時間 2,038 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,428 KB
testcase_01 AC 38 ms
53,560 KB
testcase_02 AC 39 ms
52,888 KB
testcase_03 AC 60 ms
67,424 KB
testcase_04 AC 80 ms
76,192 KB
testcase_05 AC 81 ms
76,076 KB
testcase_06 AC 81 ms
75,960 KB
testcase_07 AC 82 ms
76,584 KB
testcase_08 AC 81 ms
76,528 KB
testcase_09 AC 81 ms
76,024 KB
testcase_10 AC 78 ms
76,268 KB
testcase_11 AC 76 ms
76,024 KB
testcase_12 AC 80 ms
76,116 KB
testcase_13 AC 85 ms
76,460 KB
testcase_14 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

def g(N,d):
    Q,R=divmod(N,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(g(B,d)-g(A-1,d))
0