結果
問題 | No.1803 Remainder of Sum |
ユーザー | NatsubiSogan |
提出日時 | 2021-12-16 21:24:40 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 327 ms / 2,000 ms |
コード長 | 182 bytes |
コンパイル時間 | 179 ms |
コンパイル使用メモリ | 82,372 KB |
実行使用メモリ | 76,672 KB |
最終ジャッジ日時 | 2024-09-14 09:44:10 |
合計ジャッジ時間 | 4,882 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 40 ms
51,712 KB |
testcase_01 | AC | 308 ms
76,288 KB |
testcase_02 | AC | 320 ms
76,288 KB |
testcase_03 | AC | 327 ms
76,544 KB |
testcase_04 | AC | 322 ms
76,544 KB |
testcase_05 | AC | 327 ms
75,904 KB |
testcase_06 | AC | 316 ms
76,288 KB |
testcase_07 | AC | 307 ms
75,904 KB |
testcase_08 | AC | 310 ms
76,672 KB |
ソースコード
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)