結果

問題 No.1803 Remainder of Sum
コンテスト
ユーザー ygd.
提出日時 2022-01-09 12:16:17
言語 PyPy3
(7.3.17)
コンパイル:
pypy3 -mpy_compile _filename_
実行:
pypy3 _filename_
結果
AC  
実行時間 215 ms / 2,000 ms
コード長 695 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 182 ms
コンパイル使用メモリ 85,248 KB
実行使用メモリ 81,280 KB
最終ジャッジ日時 2026-05-09 22:42:50
合計ジャッジ時間 4,099 ms
ジャッジサーバーID
(参考情報)
judge1_0 / judge2_1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 8
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

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