結果

問題 No.1252 数字根D
ユーザー 👑 KazunKazun
提出日時 2020-09-18 03:47:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 67 ms / 2,000 ms
コード長 207 bytes
コンパイル時間 271 ms
コンパイル使用メモリ 82,244 KB
実行使用メモリ 73,004 KB
最終ジャッジ日時 2024-06-22 07:33:29
合計ジャッジ時間 1,890 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
53,664 KB
testcase_01 AC 33 ms
53,420 KB
testcase_02 AC 33 ms
53,372 KB
testcase_03 AC 49 ms
65,188 KB
testcase_04 AC 60 ms
72,288 KB
testcase_05 AC 63 ms
71,316 KB
testcase_06 AC 64 ms
72,436 KB
testcase_07 AC 67 ms
71,704 KB
testcase_08 AC 62 ms
73,004 KB
testcase_09 AC 58 ms
72,032 KB
testcase_10 AC 60 ms
72,372 KB
testcase_11 AC 61 ms
72,288 KB
testcase_12 AC 60 ms
72,116 KB
testcase_13 AC 59 ms
72,036 KB
testcase_14 AC 33 ms
53,740 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def g(N):
    Q,R=divmod(N,D-1)
    return Q*(D*(D-1))//2+(R*(R+1))//2

T=int(input())

X=[0]*T
for k in range(T):
    D,A,B=map(int,input().split())
    X[k]=g(B)-g(max(A-1,0))

print("\n".join(map(str,X)))
0