結果

問題 No.1803 Remainder of Sum
ユーザー ygd.ygd.
提出日時 2022-01-09 12:16:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 320 ms / 2,000 ms
コード長 695 bytes
コンパイル時間 249 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 76,544 KB
最終ジャッジ日時 2024-04-26 19:45:25
合計ジャッジ時間 4,226 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,712 KB
testcase_01 AC 312 ms
76,544 KB
testcase_02 AC 316 ms
76,288 KB
testcase_03 AC 320 ms
76,288 KB
testcase_04 AC 305 ms
76,288 KB
testcase_05 AC 305 ms
76,288 KB
testcase_06 AC 303 ms
76,416 KB
testcase_07 AC 296 ms
76,288 KB
testcase_08 AC 282 ms
76,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
#input = sys.stdin.readline #文字列につけてはダメ
#input = sys.stdin.buffer.readline #文字列につけてはダメ
#sys.setrecursionlimit(1000000)
#import bisect
#import itertools
#import random
#from heapq import heapify, heappop, heappush
#from collections import defaultdict 
#from collections import deque
#import copy
#from functools import lru_cache


def main():
    t = int(input())
    for _ in range(t):
        n,m = map(int,input().split())
        if n >= m:
            ans = m//2
            print(ans);continue
        ans = -2
        ans += m//2
        x = m-n
        ans += (1+x)*x//2
        print(ans)
        

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