結果

問題 No.1803 Remainder of Sum
ユーザー NatsubiSoganNatsubiSogan
提出日時 2021-12-17 09:30:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 105 ms / 2,000 ms
コード長 319 bytes
コンパイル時間 357 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 76,236 KB
最終ジャッジ日時 2024-09-14 09:44:12
合計ジャッジ時間 2,484 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,584 KB
testcase_01 AC 105 ms
76,172 KB
testcase_02 AC 101 ms
75,904 KB
testcase_03 AC 99 ms
75,904 KB
testcase_04 AC 102 ms
76,160 KB
testcase_05 AC 103 ms
76,236 KB
testcase_06 AC 92 ms
75,776 KB
testcase_07 AC 88 ms
75,648 KB
testcase_08 AC 91 ms
76,044 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():     
    import sys
    input = sys.stdin.buffer.readline
    for _ in range(int(input())):
        n, m = map(int, input().split())
        if m <= n: print(m // 2)
        else:
            x = m - n
            print(x * (x + 1) // 2 - 1 + (x - 1) + m // 2 - x)
if __name__ == '__main__':
    main()
    
0