結果

問題 No.2649 [Cherry 6th Tune C] Anthem Flower
ユーザー timitimi
提出日時 2024-02-23 21:42:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 734 ms / 2,000 ms
コード長 327 bytes
コンパイル時間 307 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 77,824 KB
最終ジャッジ日時 2024-09-29 06:00:04
合計ジャッジ時間 8,547 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 35
権限があれば一括ダウンロードができます

ソースコード

diff #

T=int(input())
for i in range(T):
  #D,A=map(int,input().split())
  N,M=input().split()
  #N=int(input())
  #X=list(map(int, input().split()))
  M=int(M)
  #ansb=((1+NN)*NN//2)%M
  M*=2 
  now=0;p=1  
  for s in N[::-1]:
    s=int(s)
    now+=p*s 
    now%=M 
    p*=10
    p%=M 
  d=(now*(now+1))
  ans=d%M 
  print(ans//2)
  
0