結果

問題 No.1803 Remainder of Sum
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2022-01-11 23:01:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 304 ms / 2,000 ms
コード長 188 bytes
コンパイル時間 345 ms
コンパイル使用メモリ 82,384 KB
実行使用メモリ 76,616 KB
最終ジャッジ日時 2024-11-14 12:16:42
合計ジャッジ時間 3,991 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,884 KB
testcase_01 AC 304 ms
76,324 KB
testcase_02 AC 299 ms
75,876 KB
testcase_03 AC 299 ms
76,616 KB
testcase_04 AC 295 ms
76,540 KB
testcase_05 AC 300 ms
76,372 KB
testcase_06 AC 297 ms
75,788 KB
testcase_07 AC 291 ms
76,112 KB
testcase_08 AC 282 ms
76,328 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

t = int(input())
for _ in range(t):

    n,m = map(int,input().split())

    if m <= n:
        ans = m//2

    else:
        dif = m-n
        ans = dif*(dif+1)//2 +m//2-2

    print(ans)
0