結果

問題 No.1803 Remainder of Sum
ユーザー NatsubiSoganNatsubiSogan
提出日時 2021-12-16 21:11:13
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 659 ms / 2,000 ms
コード長 182 bytes
コンパイル時間 400 ms
コンパイル使用メモリ 10,540 KB
実行使用メモリ 7,972 KB
最終ジャッジ日時 2023-10-12 10:52:19
合計ジャッジ時間 6,679 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 15 ms
7,868 KB
testcase_01 AC 633 ms
7,972 KB
testcase_02 AC 622 ms
7,864 KB
testcase_03 AC 620 ms
7,872 KB
testcase_04 AC 627 ms
7,812 KB
testcase_05 AC 624 ms
7,856 KB
testcase_06 AC 659 ms
7,796 KB
testcase_07 AC 582 ms
7,800 KB
testcase_08 AC 617 ms
7,792 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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)
0