結果

問題 No.2649 [Cherry 6th Tune C] Anthem Flower
ユーザー obemaru4012obemaru4012
提出日時 2024-02-25 00:13:38
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 868 bytes
コンパイル時間 291 ms
コンパイル使用メモリ 81,700 KB
実行使用メモリ 77,260 KB
最終ジャッジ日時 2024-02-25 00:13:47
合計ジャッジ時間 8,771 ms
ジャッジサーバーID
(参考情報)
judge16 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,460 KB
testcase_01 AC 611 ms
76,248 KB
testcase_02 AC 578 ms
76,248 KB
testcase_03 AC 609 ms
76,248 KB
testcase_04 AC 582 ms
76,248 KB
testcase_05 AC 756 ms
77,140 KB
testcase_06 AC 780 ms
77,120 KB
testcase_07 AC 128 ms
76,996 KB
testcase_08 AC 131 ms
77,260 KB
testcase_09 AC 102 ms
77,004 KB
testcase_10 AC 95 ms
76,868 KB
testcase_11 AC 39 ms
53,460 KB
testcase_12 AC 39 ms
53,460 KB
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 RE -
testcase_32 RE -
testcase_33 RE -
testcase_34 AC 582 ms
76,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# -*- coding=utf-8 -*-
# 【考察】

def arithmetic_progression_summary(a_1 = 1, a_n = 10, d = 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(末項)の項数を計算
    n = a_n - a_1 + d
    # nが割り切れなかった場合末項の指定を間違えている
    if n % d != 0:
        return -1
    n = n // d
    result = ((a_1 * 2) + (n * d - d)) * n
    result = result // 2
    return result

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