結果

問題 No.2649 [Cherry 6th Tune C] Anthem Flower
ユーザー NPNP
提出日時 2024-03-03 21:49:47
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,373 ms / 2,000 ms
コード長 501 bytes
コンパイル時間 479 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 13,476 KB
最終ジャッジ日時 2024-09-29 17:08:03
合計ジャッジ時間 15,715 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,880 KB
testcase_01 AC 1,325 ms
10,752 KB
testcase_02 AC 1,314 ms
10,752 KB
testcase_03 AC 1,322 ms
10,752 KB
testcase_04 AC 1,345 ms
10,752 KB
testcase_05 AC 1,368 ms
10,752 KB
testcase_06 AC 1,373 ms
10,752 KB
testcase_07 AC 96 ms
10,752 KB
testcase_08 AC 97 ms
10,752 KB
testcase_09 AC 41 ms
10,752 KB
testcase_10 AC 42 ms
10,752 KB
testcase_11 AC 27 ms
10,880 KB
testcase_12 AC 25 ms
10,752 KB
testcase_13 AC 280 ms
12,712 KB
testcase_14 AC 115 ms
12,392 KB
testcase_15 AC 104 ms
12,544 KB
testcase_16 AC 111 ms
12,416 KB
testcase_17 AC 143 ms
12,912 KB
testcase_18 AC 108 ms
12,660 KB
testcase_19 AC 122 ms
12,728 KB
testcase_20 AC 181 ms
13,208 KB
testcase_21 AC 125 ms
12,752 KB
testcase_22 AC 129 ms
12,816 KB
testcase_23 AC 187 ms
13,352 KB
testcase_24 AC 202 ms
13,464 KB
testcase_25 AC 184 ms
13,352 KB
testcase_26 AC 188 ms
13,348 KB
testcase_27 AC 190 ms
13,348 KB
testcase_28 AC 189 ms
13,352 KB
testcase_29 AC 189 ms
13,352 KB
testcase_30 AC 188 ms
13,348 KB
testcase_31 AC 191 ms
13,476 KB
testcase_32 AC 188 ms
13,352 KB
testcase_33 AC 192 ms
13,352 KB
testcase_34 AC 1,336 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.set_int_max_str_digits(4*10**6)
class Summation:
    def __init__(self, n, m):
        self.n = n
        self.m = m

    def calculate(self):
        n, m = self.n, self.m
        n1 = n % m
        n2 = (n + 1) % m
        if n % 2 == 0:
            return ((n // 2) % m * n2) % m
        else:
            return (n1 * ((n + 1) // 2) % m) % m

T = int(input())  
for _ in range(T):
    N, M = map(int, input().split())
    summation = Summation(N, M)
    print(summation.calculate())
0