結果

問題 No.2649 [Cherry 6th Tune C] Anthem Flower
ユーザー FromBooskaFromBooska
提出日時 2024-02-24 07:09:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 615 ms / 2,000 ms
コード長 676 bytes
コンパイル時間 341 ms
コンパイル使用メモリ 81,744 KB
実行使用メモリ 76,792 KB
最終ジャッジ日時 2024-09-29 09:53:27
合計ジャッジ時間 7,913 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,312 KB
testcase_01 AC 540 ms
75,648 KB
testcase_02 AC 542 ms
76,036 KB
testcase_03 AC 564 ms
75,940 KB
testcase_04 AC 580 ms
75,956 KB
testcase_05 AC 615 ms
75,628 KB
testcase_06 AC 610 ms
76,076 KB
testcase_07 AC 88 ms
75,884 KB
testcase_08 AC 92 ms
75,648 KB
testcase_09 AC 62 ms
68,292 KB
testcase_10 AC 61 ms
69,528 KB
testcase_11 AC 45 ms
59,256 KB
testcase_12 AC 43 ms
60,464 KB
testcase_13 AC 65 ms
76,240 KB
testcase_14 AC 66 ms
76,416 KB
testcase_15 AC 64 ms
75,576 KB
testcase_16 AC 65 ms
75,816 KB
testcase_17 AC 64 ms
76,236 KB
testcase_18 AC 65 ms
75,492 KB
testcase_19 AC 64 ms
76,116 KB
testcase_20 AC 64 ms
76,792 KB
testcase_21 AC 66 ms
76,076 KB
testcase_22 AC 69 ms
76,288 KB
testcase_23 AC 62 ms
76,464 KB
testcase_24 AC 62 ms
76,520 KB
testcase_25 AC 62 ms
76,700 KB
testcase_26 AC 62 ms
76,308 KB
testcase_27 AC 62 ms
76,424 KB
testcase_28 AC 60 ms
76,424 KB
testcase_29 AC 61 ms
76,468 KB
testcase_30 AC 60 ms
75,916 KB
testcase_31 AC 63 ms
76,692 KB
testcase_32 AC 63 ms
76,416 KB
testcase_33 AC 53 ms
60,900 KB
testcase_34 AC 502 ms
76,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# Mは素数とは限らないので逆元を求めるのは面倒
# Nは超巨大数がありうるが計算できるのか不明
# RE、やっぱり超巨大数は文字列で受けるしかない
# 公式解説見た
# N(N+1)//2=Mq+r, N(N+1)=2Mq+2r, K=N%(2M)として計算
# Nは超巨大数なので筆算のように上の桁から割り算して10倍してを繰り返す

T = int(input())
for t in range(T):
    N, M = map(str, input().split())
    M = int(M)
    K = 0
    for n in N:
        K = (K*10+int(n))%(M*2)
        #print('K', K)
    ans2 = (K*(K+1))%(M*2)
    # このans2は偶数を偶数で割った余りなので偶数
    ans = ans2//2
    print(ans)
0