結果

問題 No.1252 数字根D
ユーザー tamatotamato
提出日時 2020-10-09 21:49:10
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 663 bytes
コンパイル時間 457 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 69,120 KB
最終ジャッジ日時 2024-07-20 10:33:25
合計ジャッジ時間 2,071 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,096 KB
testcase_01 AC 42 ms
52,224 KB
testcase_02 AC 41 ms
52,224 KB
testcase_03 AC 50 ms
60,296 KB
testcase_04 AC 66 ms
68,480 KB
testcase_05 AC 66 ms
68,352 KB
testcase_06 AC 58 ms
65,920 KB
testcase_07 AC 66 ms
69,120 KB
testcase_08 AC 66 ms
68,352 KB
testcase_09 AC 69 ms
67,712 KB
testcase_10 AC 60 ms
66,176 KB
testcase_11 AC 71 ms
68,992 KB
testcase_12 AC 66 ms
67,712 KB
testcase_13 AC 66 ms
65,920 KB
testcase_14 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 1000000007
eps = 10**-9


def main():
    import sys
    input = sys.stdin.buffer.readline

    for _ in range(int(input())):
        d, a, b = map(int, input().split())
        d = d-1
        aa = a%d
        bb = b%d
        if aa == 0:
            aa = d
        if bb == 0:
            bb = d
        if aa < bb:
            print((d * (d+1) // 2) * ((b - a) // d) + ((aa + bb) * (bb-aa+1) // 2))
        elif aa > bb:
            print((d * (d + 1) // 2) * ((b - a) // d) + ((aa + d) * (d - aa + 1) // 2) + (1 + bb) * (bb - 1 + 1) // 2)
        else:
            print((d * (d + 1) // 2) * ((b - a) // d) + aa)


if __name__ == '__main__':
    main()
0