結果

問題 No.1252 数字根D
ユーザー tanon710tanon710
提出日時 2020-10-15 22:21:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 109 ms / 2,000 ms
コード長 394 bytes
コンパイル時間 157 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 77,312 KB
最終ジャッジ日時 2024-07-20 20:02:35
合計ジャッジ時間 1,922 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,968 KB
testcase_01 AC 37 ms
52,224 KB
testcase_02 AC 39 ms
52,608 KB
testcase_03 AC 64 ms
66,944 KB
testcase_04 AC 90 ms
77,056 KB
testcase_05 AC 90 ms
77,056 KB
testcase_06 AC 90 ms
77,056 KB
testcase_07 AC 94 ms
77,312 KB
testcase_08 AC 95 ms
77,056 KB
testcase_09 AC 90 ms
76,672 KB
testcase_10 AC 91 ms
77,056 KB
testcase_11 AC 101 ms
77,056 KB
testcase_12 AC 109 ms
77,312 KB
testcase_13 AC 108 ms
77,056 KB
testcase_14 AC 37 ms
51,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

t=int(input())
for _ in range(t):
    d,a,b=map(int,input().split())
    
    def calc(n):
        if n==0:
            return 1
        else:
            block=(n-1)//(d-1)
            k=n%(d-1)
            if k==0:
                k=d-1
            return 1+(block*((d-1)*d))//2+(k*(k+1))//2
    
    if a==0:
        ans=calc(b)-calc(a)
    else:
        ans=calc(b)-calc(a-1)
    print(ans)
0