結果

問題 No.1252 数字根D
ユーザー taiga000629taiga000629
提出日時 2020-10-10 00:02:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 85 ms / 2,000 ms
コード長 500 bytes
コンパイル時間 200 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 76,768 KB
最終ジャッジ日時 2024-07-20 14:50:32
合計ジャッジ時間 1,868 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,584 KB
testcase_01 AC 39 ms
52,608 KB
testcase_02 AC 40 ms
52,608 KB
testcase_03 AC 59 ms
65,792 KB
testcase_04 AC 81 ms
76,768 KB
testcase_05 AC 80 ms
76,288 KB
testcase_06 AC 85 ms
76,312 KB
testcase_07 AC 82 ms
76,416 KB
testcase_08 AC 81 ms
76,672 KB
testcase_09 AC 82 ms
76,524 KB
testcase_10 AC 84 ms
76,160 KB
testcase_11 AC 82 ms
76,548 KB
testcase_12 AC 82 ms
76,416 KB
testcase_13 AC 81 ms
76,416 KB
testcase_14 AC 36 ms
51,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

t=int(input())
ans=[]
for i in range(t):
    d,a,b=map(int,input().split())
    p=d-1
    if a==0:
        if b==0:
            ans.append(0)
            continue
        else:
            a=1
    T=p*(p+1)//2
    k=(a-1)//p
    l=(a-1)%p+1
    y=(b-1)//p
    z=(b-1)%p+1

    if k<y:
        res=T*(y-k-1)
        res+=(p-l+1)*(p+l)//2
        res+=z*(z+1)//2
        ans.append(res)
    else:
        res=0
        res+=(z-l+1)*(z+l)//2
        ans.append(res)
for i in range(t):
    print(ans[i])
0