結果

問題 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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,788 KB
testcase_01 AC 608 ms
76,332 KB
testcase_02 AC 593 ms
76,308 KB
testcase_03 AC 596 ms
76,164 KB
testcase_04 AC 590 ms
76,080 KB
testcase_05 AC 726 ms
76,524 KB
testcase_06 AC 734 ms
76,268 KB
testcase_07 AC 92 ms
76,148 KB
testcase_08 AC 93 ms
75,940 KB
testcase_09 AC 62 ms
70,836 KB
testcase_10 AC 64 ms
72,168 KB
testcase_11 AC 44 ms
59,848 KB
testcase_12 AC 45 ms
60,128 KB
testcase_13 AC 75 ms
77,040 KB
testcase_14 AC 76 ms
77,188 KB
testcase_15 AC 76 ms
76,448 KB
testcase_16 AC 79 ms
76,772 KB
testcase_17 AC 78 ms
77,016 KB
testcase_18 AC 76 ms
76,548 KB
testcase_19 AC 76 ms
77,004 KB
testcase_20 AC 75 ms
77,436 KB
testcase_21 AC 76 ms
76,816 KB
testcase_22 AC 78 ms
76,864 KB
testcase_23 AC 72 ms
77,800 KB
testcase_24 AC 71 ms
77,504 KB
testcase_25 AC 70 ms
77,824 KB
testcase_26 AC 72 ms
77,048 KB
testcase_27 AC 71 ms
77,212 KB
testcase_28 AC 71 ms
77,100 KB
testcase_29 AC 72 ms
77,348 KB
testcase_30 AC 70 ms
77,508 KB
testcase_31 AC 71 ms
77,104 KB
testcase_32 AC 71 ms
77,344 KB
testcase_33 AC 70 ms
77,652 KB
testcase_34 AC 583 ms
76,576 KB
権限があれば一括ダウンロードができます

ソースコード

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