結果

問題 No.1252 数字根D
ユーザー googol_S0googol_S0
提出日時 2020-10-09 21:50:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 93 ms / 2,000 ms
コード長 208 bytes
コンパイル時間 318 ms
コンパイル使用メモリ 82,196 KB
実行使用メモリ 76,260 KB
最終ジャッジ日時 2024-07-20 10:36:42
合計ジャッジ時間 2,210 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,944 KB
testcase_01 AC 41 ms
53,224 KB
testcase_02 AC 41 ms
52,840 KB
testcase_03 AC 66 ms
66,908 KB
testcase_04 AC 93 ms
75,912 KB
testcase_05 AC 90 ms
76,260 KB
testcase_06 AC 90 ms
76,092 KB
testcase_07 AC 92 ms
76,108 KB
testcase_08 AC 92 ms
75,904 KB
testcase_09 AC 87 ms
76,200 KB
testcase_10 AC 86 ms
75,952 KB
testcase_11 AC 86 ms
75,960 KB
testcase_12 AC 88 ms
75,916 KB
testcase_13 AC 86 ms
76,160 KB
testcase_14 AC 40 ms
52,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T=int(input())
D,A,B,P=0,0,0,0
for i in range(T):
  D,A,B=map(int,input().split())
  D-=1
  A=max(0,A-1)
  P=(B//D)*D*(D+1)//2
  P+=(B%D)*((B%D)+1)//2
  P-=(A//D)*D*(D+1)//2
  P-=(A%D)*((A%D)+1)//2
  print(P)
0