結果

問題 No.2649 [Cherry 6th Tune C] Anthem Flower
ユーザー tipstar0125tipstar0125
提出日時 2024-02-23 22:02:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 698 ms / 2,000 ms
コード長 270 bytes
コンパイル時間 440 ms
コンパイル使用メモリ 82,364 KB
実行使用メモリ 95,844 KB
最終ジャッジ日時 2024-09-29 06:40:49
合計ジャッジ時間 8,850 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,432 KB
testcase_01 AC 592 ms
76,404 KB
testcase_02 AC 580 ms
76,028 KB
testcase_03 AC 581 ms
76,180 KB
testcase_04 AC 578 ms
76,208 KB
testcase_05 AC 698 ms
76,172 KB
testcase_06 AC 678 ms
76,200 KB
testcase_07 AC 91 ms
75,692 KB
testcase_08 AC 89 ms
76,112 KB
testcase_09 AC 62 ms
69,992 KB
testcase_10 AC 63 ms
70,480 KB
testcase_11 AC 43 ms
59,152 KB
testcase_12 AC 42 ms
60,008 KB
testcase_13 AC 81 ms
83,952 KB
testcase_14 AC 78 ms
83,560 KB
testcase_15 AC 75 ms
80,032 KB
testcase_16 AC 77 ms
82,288 KB
testcase_17 AC 85 ms
90,720 KB
testcase_18 AC 81 ms
83,420 KB
testcase_19 AC 84 ms
87,320 KB
testcase_20 AC 90 ms
95,204 KB
testcase_21 AC 82 ms
85,784 KB
testcase_22 AC 79 ms
85,040 KB
testcase_23 AC 85 ms
95,508 KB
testcase_24 AC 85 ms
95,732 KB
testcase_25 AC 86 ms
95,748 KB
testcase_26 AC 86 ms
95,844 KB
testcase_27 AC 84 ms
95,368 KB
testcase_28 AC 86 ms
95,716 KB
testcase_29 AC 86 ms
95,568 KB
testcase_30 AC 87 ms
95,720 KB
testcase_31 AC 86 ms
95,188 KB
testcase_32 AC 85 ms
95,756 KB
testcase_33 AC 71 ms
80,888 KB
testcase_34 AC 556 ms
75,720 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T=int(input())
for _ in range(T):
    N,M=input().split()
    N=list(N)
    M=int(M)
    p=1
    a=0
    for n in reversed(N):
        a+=p*int(n)
        a%=2*M
        p*=10
        p%=2*M
    b=a
    b+=1
    b%=2*M
    ans=a*b
    ans%=2*M
    ans//=2
    print(ans)
0