結果

問題 No.2649 [Cherry 6th Tune C] Anthem Flower
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-02-23 21:44:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 693 ms / 2,000 ms
コード長 178 bytes
コンパイル時間 369 ms
コンパイル使用メモリ 81,700 KB
実行使用メモリ 77,004 KB
最終ジャッジ日時 2024-02-23 21:44:29
合計ジャッジ時間 8,314 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,460 KB
testcase_01 AC 647 ms
76,000 KB
testcase_02 AC 620 ms
76,000 KB
testcase_03 AC 626 ms
76,000 KB
testcase_04 AC 613 ms
76,000 KB
testcase_05 AC 693 ms
77,004 KB
testcase_06 AC 693 ms
77,000 KB
testcase_07 AC 126 ms
76,884 KB
testcase_08 AC 113 ms
76,880 KB
testcase_09 AC 88 ms
76,880 KB
testcase_10 AC 88 ms
76,880 KB
testcase_11 AC 41 ms
59,704 KB
testcase_12 AC 40 ms
59,704 KB
testcase_13 AC 61 ms
76,252 KB
testcase_14 AC 60 ms
76,056 KB
testcase_15 AC 60 ms
75,596 KB
testcase_16 AC 63 ms
75,684 KB
testcase_17 AC 62 ms
76,104 KB
testcase_18 AC 61 ms
75,704 KB
testcase_19 AC 61 ms
75,832 KB
testcase_20 AC 58 ms
73,980 KB
testcase_21 AC 61 ms
75,908 KB
testcase_22 AC 60 ms
74,916 KB
testcase_23 AC 55 ms
73,372 KB
testcase_24 AC 55 ms
73,372 KB
testcase_25 AC 55 ms
73,372 KB
testcase_26 AC 56 ms
73,372 KB
testcase_27 AC 55 ms
73,372 KB
testcase_28 AC 55 ms
73,372 KB
testcase_29 AC 55 ms
73,372 KB
testcase_30 AC 55 ms
73,372 KB
testcase_31 AC 56 ms
73,372 KB
testcase_32 AC 55 ms
73,372 KB
testcase_33 AC 55 ms
73,372 KB
testcase_34 AC 598 ms
76,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def d(a,b):
  q=0
  for c in a:
    q=q*10+int(c)
    q%=b
  return q

t=int(input())
for _ in range(t):
  n,M=input().split()
  M=int(M)
  a=d(n,2*M)
  print(((a*a+a)%(2*M))//2)
0