結果

問題 No.2649 [Cherry 6th Tune C] Anthem Flower
ユーザー minimumminimum
提出日時 2024-02-23 21:36:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 563 ms / 2,000 ms
コード長 233 bytes
コンパイル時間 194 ms
コンパイル使用メモリ 82,148 KB
実行使用メモリ 76,364 KB
最終ジャッジ日時 2024-09-29 05:47:21
合計ジャッジ時間 7,251 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,096 KB
testcase_01 AC 517 ms
76,120 KB
testcase_02 AC 502 ms
76,364 KB
testcase_03 AC 490 ms
76,156 KB
testcase_04 AC 491 ms
76,228 KB
testcase_05 AC 561 ms
76,168 KB
testcase_06 AC 563 ms
76,236 KB
testcase_07 AC 92 ms
76,032 KB
testcase_08 AC 91 ms
76,188 KB
testcase_09 AC 74 ms
74,728 KB
testcase_10 AC 69 ms
74,872 KB
testcase_11 AC 39 ms
59,540 KB
testcase_12 AC 38 ms
60,208 KB
testcase_13 AC 51 ms
74,308 KB
testcase_14 AC 52 ms
74,108 KB
testcase_15 AC 54 ms
75,820 KB
testcase_16 AC 51 ms
74,472 KB
testcase_17 AC 50 ms
74,364 KB
testcase_18 AC 50 ms
73,940 KB
testcase_19 AC 50 ms
74,556 KB
testcase_20 AC 51 ms
73,940 KB
testcase_21 AC 51 ms
74,600 KB
testcase_22 AC 54 ms
73,908 KB
testcase_23 AC 49 ms
73,616 KB
testcase_24 AC 49 ms
74,632 KB
testcase_25 AC 50 ms
73,272 KB
testcase_26 AC 50 ms
73,648 KB
testcase_27 AC 50 ms
75,100 KB
testcase_28 AC 50 ms
74,656 KB
testcase_29 AC 49 ms
74,412 KB
testcase_30 AC 50 ms
73,676 KB
testcase_31 AC 51 ms
74,216 KB
testcase_32 AC 50 ms
74,408 KB
testcase_33 AC 48 ms
74,404 KB
testcase_34 AC 486 ms
76,100 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