結果

問題 No.2649 [Cherry 6th Tune C] Anthem Flower
ユーザー StanMarshStanMarsh
提出日時 2024-02-23 22:12:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 958 ms / 2,000 ms
コード長 1,360 bytes
コンパイル時間 241 ms
コンパイル使用メモリ 82,016 KB
実行使用メモリ 114,808 KB
最終ジャッジ日時 2024-09-29 06:56:01
合計ジャッジ時間 11,052 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,792 KB
testcase_01 AC 674 ms
82,804 KB
testcase_02 AC 656 ms
82,560 KB
testcase_03 AC 669 ms
82,608 KB
testcase_04 AC 655 ms
82,544 KB
testcase_05 AC 958 ms
83,692 KB
testcase_06 AC 929 ms
83,436 KB
testcase_07 AC 136 ms
77,628 KB
testcase_08 AC 135 ms
77,712 KB
testcase_09 AC 100 ms
77,564 KB
testcase_10 AC 100 ms
77,244 KB
testcase_11 AC 49 ms
64,012 KB
testcase_12 AC 49 ms
64,208 KB
testcase_13 AC 135 ms
101,352 KB
testcase_14 AC 132 ms
99,572 KB
testcase_15 AC 129 ms
105,304 KB
testcase_16 AC 132 ms
97,524 KB
testcase_17 AC 135 ms
104,168 KB
testcase_18 AC 130 ms
98,080 KB
testcase_19 AC 132 ms
99,928 KB
testcase_20 AC 136 ms
113,836 KB
testcase_21 AC 130 ms
102,912 KB
testcase_22 AC 131 ms
103,072 KB
testcase_23 AC 128 ms
114,140 KB
testcase_24 AC 127 ms
114,384 KB
testcase_25 AC 126 ms
113,772 KB
testcase_26 AC 127 ms
113,840 KB
testcase_27 AC 129 ms
114,524 KB
testcase_28 AC 127 ms
114,668 KB
testcase_29 AC 131 ms
114,808 KB
testcase_30 AC 130 ms
114,036 KB
testcase_31 AC 129 ms
114,288 KB
testcase_32 AC 128 ms
114,616 KB
testcase_33 AC 125 ms
113,924 KB
testcase_34 AC 581 ms
82,340 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

inf = float("inf")

input = lambda: sys.stdin.readline().rstrip("\r\n")

print = lambda *args, end="\n", sep=" ": sys.stdout.write(
    sep.join(map(str, args)) + end
)


def II():
    return int(input())


def MII(b=0):
    return map(lambda x: int(x) - b, input().split())


def LII(b=0):
    return list(MII(b))


class Decimal:
    def __init__(self, num_str):
        self.digits = [int(digit) for digit in num_str[::-1]]

    def __add__(self, other):
        result = []
        carry = 0
        max_len = max(len(self.digits), len(other.digits))

        for i in range(max_len):
            a = self.digits[i] if i < len(self.digits) else 0
            b = other.digits[i] if i < len(other.digits) else 0
            temp = a + b + carry
            result.append(temp % 10)
            carry = temp // 10

        if carry:
            result.append(carry)

        return Decimal("".join(map(str, result[::-1])))

    def __mod__(self, n):
        remainder = 0
        for digit in self.digits[::-1]:
            remainder = (remainder * 10 + digit) % n
        return remainder


num1 = Decimal("123")
num2 = Decimal("456")

sum_result = num1 + num2
mod_result = num1 % 7


for _ in range(II()):
    x, m = input().split()
    m = int(m)
    x = Decimal(x)
    y = x + Decimal("1")

    m *= 2
    print(((x % m) * (y % m) % m) // 2)
0