結果

問題 No.1803 Remainder of Sum
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2022-01-11 23:01:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 316 ms / 2,000 ms
コード長 188 bytes
コンパイル時間 314 ms
コンパイル使用メモリ 82,448 KB
実行使用メモリ 76,416 KB
最終ジャッジ日時 2024-04-26 21:12:48
合計ジャッジ時間 4,127 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,712 KB
testcase_01 AC 297 ms
76,288 KB
testcase_02 AC 312 ms
75,904 KB
testcase_03 AC 316 ms
76,032 KB
testcase_04 AC 305 ms
76,416 KB
testcase_05 AC 310 ms
76,416 KB
testcase_06 AC 300 ms
76,288 KB
testcase_07 AC 288 ms
76,032 KB
testcase_08 AC 295 ms
76,416 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