結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,224 KB
testcase_01 AC 35 ms
51,968 KB
testcase_02 AC 37 ms
52,608 KB
testcase_03 AC 67 ms
66,944 KB
testcase_04 AC 93 ms
76,800 KB
testcase_05 AC 91 ms
77,312 KB
testcase_06 AC 93 ms
77,184 KB
testcase_07 AC 90 ms
77,056 KB
testcase_08 AC 90 ms
77,184 KB
testcase_09 AC 89 ms
77,312 KB
testcase_10 AC 90 ms
77,312 KB
testcase_11 AC 90 ms
76,800 KB
testcase_12 AC 90 ms
77,056 KB
testcase_13 AC 89 ms
77,184 KB
testcase_14 WA -
権限があれば一括ダウンロードができます

ソースコード

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)
    else:
        ans=calc(b)-calc(a-1)
    print(ans)
0