結果

問題 No.2649 [Cherry 6th Tune C] Anthem Flower
ユーザー obemaru4012obemaru4012
提出日時 2024-02-25 00:13:38
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 868 bytes
コンパイル時間 142 ms
コンパイル使用メモリ 82,156 KB
実行使用メモリ 77,468 KB
最終ジャッジ日時 2024-09-29 10:27:11
合計ジャッジ時間 7,558 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,764 KB
testcase_01 AC 477 ms
76,468 KB
testcase_02 AC 450 ms
76,460 KB
testcase_03 AC 464 ms
76,624 KB
testcase_04 AC 446 ms
76,404 KB
testcase_05 AC 667 ms
77,284 KB
testcase_06 AC 674 ms
77,468 KB
testcase_07 AC 122 ms
76,776 KB
testcase_08 AC 125 ms
77,428 KB
testcase_09 AC 98 ms
77,180 KB
testcase_10 AC 86 ms
76,956 KB
testcase_11 AC 37 ms
54,100 KB
testcase_12 AC 38 ms
53,800 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 470 ms
76,696 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