結果
| 問題 |
No.1803 Remainder of Sum
|
| コンテスト | |
| ユーザー |
tamato
|
| 提出日時 | 2022-01-07 22:26:14 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 655 bytes |
| コンパイル時間 | 266 ms |
| コンパイル使用メモリ | 82,600 KB |
| 実行使用メモリ | 77,176 KB |
| 最終ジャッジ日時 | 2024-11-14 08:53:47 |
| 合計ジャッジ時間 | 1,958 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 1 WA * 7 |
ソースコード
mod = 1000000007
eps = 10**-9
def main():
import sys
input = sys.stdin.readline
for _ in range(int(input())):
N, M = map(int, input().split())
if M == 1:
print(0)
continue
if M <= N:
if M == 2:
print(1)
else:
print((M - 1) // 2)
elif M >= 2 * N:
print(N - 1 + (N * (N + 1)) // 2 - 1)
else:
K = M - N - 1
if K == 0:
print((N - 1) // 2)
else:
print((N - K - 1) // 2 + K + ((K + 1) * (K + 2)) // 2 - 1)
if __name__ == '__main__':
main()
tamato