結果

問題 No.1252 数字根D
ユーザー taiga000629taiga000629
提出日時 2020-10-09 23:59:39
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 393 bytes
コンパイル時間 170 ms
コンパイル使用メモリ 82,448 KB
実行使用メモリ 76,996 KB
最終ジャッジ日時 2024-07-20 14:47:37
合計ジャッジ時間 2,037 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,968 KB
testcase_01 AC 43 ms
52,224 KB
testcase_02 AC 43 ms
52,276 KB
testcase_03 AC 62 ms
65,792 KB
testcase_04 AC 84 ms
76,288 KB
testcase_05 AC 87 ms
76,416 KB
testcase_06 AC 95 ms
76,672 KB
testcase_07 AC 94 ms
76,340 KB
testcase_08 AC 95 ms
76,160 KB
testcase_09 AC 96 ms
76,160 KB
testcase_10 AC 96 ms
76,472 KB
testcase_11 AC 96 ms
76,996 KB
testcase_12 AC 93 ms
76,672 KB
testcase_13 AC 96 ms
76,308 KB
testcase_14 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

t=int(input())
ans=[]
for i in range(t):
    d,a,b=map(int,input().split())
    p=d-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