結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,460 KB
testcase_01 AC 586 ms
76,116 KB
testcase_02 AC 557 ms
76,120 KB
testcase_03 AC 564 ms
76,248 KB
testcase_04 AC 568 ms
76,248 KB
testcase_05 AC 670 ms
76,252 KB
testcase_06 AC 704 ms
76,240 KB
testcase_07 AC 124 ms
76,244 KB
testcase_08 AC 127 ms
76,372 KB
testcase_09 AC 101 ms
76,116 KB
testcase_10 AC 93 ms
76,116 KB
testcase_11 AC 39 ms
53,460 KB
testcase_12 AC 38 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 565 ms
76,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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