結果

問題 No.1803 Remainder of Sum
ユーザー ygd.ygd.
提出日時 2022-01-09 12:16:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 309 ms / 2,000 ms
コード長 695 bytes
コンパイル時間 373 ms
コンパイル使用メモリ 82,232 KB
実行使用メモリ 76,664 KB
最終ジャッジ日時 2024-11-14 10:20:13
合計ジャッジ時間 3,831 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,656 KB
testcase_01 AC 305 ms
76,252 KB
testcase_02 AC 305 ms
75,812 KB
testcase_03 AC 303 ms
76,428 KB
testcase_04 AC 309 ms
76,288 KB
testcase_05 AC 304 ms
76,664 KB
testcase_06 AC 291 ms
76,448 KB
testcase_07 AC 292 ms
76,284 KB
testcase_08 AC 288 ms
76,604 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