結果

問題 No.2649 [Cherry 6th Tune C] Anthem Flower
ユーザー obemaru4012obemaru4012
提出日時 2024-02-25 01:22:50
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,351 ms / 2,000 ms
コード長 842 bytes
コンパイル時間 248 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 13,340 KB
最終ジャッジ日時 2024-09-29 10:33:11
合計ジャッジ時間 14,967 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,624 KB
testcase_01 AC 1,351 ms
10,752 KB
testcase_02 AC 1,265 ms
10,624 KB
testcase_03 AC 1,320 ms
10,624 KB
testcase_04 AC 1,283 ms
10,752 KB
testcase_05 AC 1,343 ms
10,752 KB
testcase_06 AC 1,300 ms
10,752 KB
testcase_07 AC 88 ms
10,624 KB
testcase_08 AC 89 ms
10,752 KB
testcase_09 AC 39 ms
10,624 KB
testcase_10 AC 44 ms
10,752 KB
testcase_11 AC 26 ms
10,752 KB
testcase_12 AC 27 ms
10,624 KB
testcase_13 AC 220 ms
12,636 KB
testcase_14 AC 114 ms
12,384 KB
testcase_15 AC 101 ms
12,288 KB
testcase_16 AC 108 ms
12,280 KB
testcase_17 AC 140 ms
12,776 KB
testcase_18 AC 104 ms
12,404 KB
testcase_19 AC 121 ms
12,604 KB
testcase_20 AC 177 ms
13,200 KB
testcase_21 AC 119 ms
12,748 KB
testcase_22 AC 125 ms
12,672 KB
testcase_23 AC 180 ms
13,212 KB
testcase_24 AC 180 ms
13,208 KB
testcase_25 AC 181 ms
13,216 KB
testcase_26 AC 180 ms
13,212 KB
testcase_27 AC 181 ms
13,336 KB
testcase_28 AC 182 ms
13,340 KB
testcase_29 AC 184 ms
13,212 KB
testcase_30 AC 187 ms
13,208 KB
testcase_31 AC 188 ms
13,208 KB
testcase_32 AC 179 ms
13,212 KB
testcase_33 AC 182 ms
13,340 KB
testcase_34 AC 1,286 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# -*- coding=utf-8 -*-
# 【考察】
# 割り算の存在しない形に式変形できれば良さそう。

import sys
sys.set_int_max_str_digits(0)

def arithmetic_progression_summary(a_1 = 1, a_n = 10, d = 1, MOD = 1):
    """等差数列の和を計算する(a_nは一般的な項数ではなくて末項を指定する)\n
       
       a_1 = 1
       a_n = 10
       d = 1
       => Σ[k=1, n=10] k => 55
    Args:
        a_1 (int): 初項。
        a_n (int): 末項。
        d (int): 公差。
    """
    a_n = a_n % MOD
    result = a_n * (a_n + 1) 
    result = result % MOD
    return result

if __name__ == "__main__":
    Q = int(input())
    for q in range(Q):
        n, m = list(map(int, input().split(" ")))
        mod = m * 2
        a = arithmetic_progression_summary(1, n, 1, mod)
        print((a // 2) % mod)
0