結果

問題 No.2649 [Cherry 6th Tune C] Anthem Flower
ユーザー Akijin_007Akijin_007
提出日時 2024-02-23 21:49:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 509 ms / 2,000 ms
コード長 427 bytes
コンパイル時間 309 ms
コンパイル使用メモリ 82,500 KB
実行使用メモリ 122,820 KB
最終ジャッジ日時 2024-09-29 06:13:21
合計ジャッジ時間 6,876 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,840 KB
testcase_01 AC 393 ms
121,120 KB
testcase_02 AC 401 ms
121,184 KB
testcase_03 AC 385 ms
121,152 KB
testcase_04 AC 389 ms
121,068 KB
testcase_05 AC 504 ms
122,820 KB
testcase_06 AC 509 ms
122,540 KB
testcase_07 AC 96 ms
78,240 KB
testcase_08 AC 97 ms
78,136 KB
testcase_09 AC 82 ms
76,828 KB
testcase_10 AC 82 ms
76,720 KB
testcase_11 AC 43 ms
60,028 KB
testcase_12 AC 43 ms
60,528 KB
testcase_13 AC 72 ms
76,492 KB
testcase_14 AC 71 ms
76,876 KB
testcase_15 AC 70 ms
76,516 KB
testcase_16 AC 70 ms
75,964 KB
testcase_17 AC 72 ms
76,860 KB
testcase_18 AC 71 ms
76,288 KB
testcase_19 AC 70 ms
76,536 KB
testcase_20 AC 69 ms
75,412 KB
testcase_21 AC 69 ms
76,704 KB
testcase_22 AC 70 ms
76,832 KB
testcase_23 AC 65 ms
74,848 KB
testcase_24 AC 65 ms
74,336 KB
testcase_25 AC 66 ms
75,404 KB
testcase_26 AC 67 ms
75,456 KB
testcase_27 AC 66 ms
75,512 KB
testcase_28 AC 65 ms
75,304 KB
testcase_29 AC 65 ms
74,412 KB
testcase_30 AC 65 ms
74,740 KB
testcase_31 AC 66 ms
75,144 KB
testcase_32 AC 66 ms
74,400 KB
testcase_33 AC 65 ms
75,392 KB
testcase_34 AC 344 ms
118,212 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#int(input())
#map(int, input().split())
#list(map(int, input().split()))

T = int(input())

n = [0] * T
m = [0] * T
for i in range(T):
    n[i], m[i] = input().split()

ans = []
for i in range(T):
    N = n[i][::-1]
    M = int(m[i])
    M *= 2

    p = 1

    a = 0
    for j in range(len(N)):
        a = (a + p*int(N[j])) % M
        p = (p * 10) % M

    ans.append((a*(a+1)//2) % (M // 2))

for x in ans:
    print(x)



0