結果

問題 No.2649 [Cherry 6th Tune C] Anthem Flower
ユーザー minimumminimum
提出日時 2024-02-23 21:36:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 694 ms / 2,000 ms
コード長 233 bytes
コンパイル時間 175 ms
コンパイル使用メモリ 81,700 KB
実行使用メモリ 75,884 KB
最終ジャッジ日時 2024-02-23 21:36:14
合計ジャッジ時間 8,428 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,332 KB
testcase_01 AC 611 ms
75,756 KB
testcase_02 AC 613 ms
75,756 KB
testcase_03 AC 610 ms
75,756 KB
testcase_04 AC 622 ms
75,756 KB
testcase_05 AC 694 ms
75,884 KB
testcase_06 AC 691 ms
75,884 KB
testcase_07 AC 106 ms
75,756 KB
testcase_08 AC 106 ms
75,756 KB
testcase_09 AC 79 ms
74,348 KB
testcase_10 AC 78 ms
74,348 KB
testcase_11 AC 41 ms
59,580 KB
testcase_12 AC 42 ms
59,580 KB
testcase_13 AC 57 ms
74,088 KB
testcase_14 AC 57 ms
74,148 KB
testcase_15 AC 59 ms
75,332 KB
testcase_16 AC 60 ms
74,032 KB
testcase_17 AC 57 ms
73,940 KB
testcase_18 AC 57 ms
74,036 KB
testcase_19 AC 56 ms
74,052 KB
testcase_20 AC 57 ms
73,856 KB
testcase_21 AC 57 ms
73,984 KB
testcase_22 AC 57 ms
74,032 KB
testcase_23 AC 55 ms
73,248 KB
testcase_24 AC 56 ms
73,248 KB
testcase_25 AC 55 ms
73,248 KB
testcase_26 AC 57 ms
73,248 KB
testcase_27 AC 56 ms
73,248 KB
testcase_28 AC 55 ms
73,248 KB
testcase_29 AC 55 ms
73,248 KB
testcase_30 AC 55 ms
73,248 KB
testcase_31 AC 56 ms
73,248 KB
testcase_32 AC 55 ms
73,248 KB
testcase_33 AC 55 ms
73,248 KB
testcase_34 AC 568 ms
75,756 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve():
    N, M = map(str, input().split(' '))
    M = int(M)
    r = 0
    for i in range(len(N)):
        r = (10 * r + int(N[i])) % (2 * M)
    print((r * (r + 1) // 2) % M)



T = int(input())
for _ in range(T):
    solve()
0