結果

問題 No.2649 [Cherry 6th Tune C] Anthem Flower
ユーザー ゼットゼット
提出日時 2024-02-23 21:49:22
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 762 bytes
コンパイル時間 182 ms
コンパイル使用メモリ 82,464 KB
実行使用メモリ 83,560 KB
最終ジャッジ日時 2024-09-29 06:13:32
合計ジャッジ時間 9,316 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
53,548 KB
testcase_01 AC 720 ms
77,984 KB
testcase_02 AC 713 ms
77,876 KB
testcase_03 AC 704 ms
78,048 KB
testcase_04 AC 695 ms
77,932 KB
testcase_05 AC 864 ms
77,972 KB
testcase_06 AC 852 ms
77,784 KB
testcase_07 AC 161 ms
77,528 KB
testcase_08 AC 158 ms
77,548 KB
testcase_09 AC 108 ms
77,220 KB
testcase_10 AC 113 ms
76,776 KB
testcase_11 AC 44 ms
61,208 KB
testcase_12 AC 42 ms
62,020 KB
testcase_13 AC 82 ms
81,188 KB
testcase_14 AC 67 ms
79,604 KB
testcase_15 AC 87 ms
79,364 KB
testcase_16 AC 84 ms
81,012 KB
testcase_17 AC 84 ms
82,032 KB
testcase_18 AC 92 ms
81,648 KB
testcase_19 AC 88 ms
81,400 KB
testcase_20 AC 77 ms
83,272 KB
testcase_21 AC 92 ms
81,572 KB
testcase_22 AC 93 ms
82,760 KB
testcase_23 AC 54 ms
77,912 KB
testcase_24 AC 51 ms
77,772 KB
testcase_25 AC 71 ms
83,456 KB
testcase_26 AC 55 ms
77,708 KB
testcase_27 AC 70 ms
83,004 KB
testcase_28 AC 71 ms
83,520 KB
testcase_29 AC 70 ms
83,228 KB
testcase_30 AC 53 ms
78,408 KB
testcase_31 AC 69 ms
83,560 KB
testcase_32 AC 74 ms
83,456 KB
testcase_33 WA -
testcase_34 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

Q=int(input())
for _ in range(Q):
  S,M=input().split()
  M=int(M)
  N=len(S)
  u=[1]*N
  mod=M
  if M==1:
    print(0)
    continue
  for i in range(1,N):
    u[i]=u[i-1]*10
    u[i]%=mod
  x=0
  for i in range(N):
    x+=int(S[-(i+1)])*u[i]
    x%=mod
  if M%2==1:
    result=x*(x+1)
    result%=mod
    result*=pow(2,-1,mod)
    result%=mod
    print(result)
  else:
    result=x*(x+1)//2
    result%=mod
    u2=[1]*N
    mod2=2*M
    for i in range(1,N):
      u2[i]=u2[i-1]*10
      u2[i]%=mod2
    z=0
    for i in range(N):
      z+=int(S[-(i+1)])*u2[i]
      z%=mod2
    if x%2==0:
      if z!=x:
        result+=(M//2)*(x+1)
        result%=mod
    else:
      if ((z+1)%mod2)!=((x+1)%mod):
        result+=(M//2)*x
        result%=mod
    print(result)
0