結果

問題 No.2649 [Cherry 6th Tune C] Anthem Flower
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-02-23 21:44:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 637 ms / 2,000 ms
コード長 178 bytes
コンパイル時間 223 ms
コンパイル使用メモリ 82,408 KB
実行使用メモリ 77,144 KB
最終ジャッジ日時 2024-09-29 06:03:37
合計ジャッジ時間 7,982 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,132 KB
testcase_01 AC 563 ms
76,296 KB
testcase_02 AC 568 ms
76,336 KB
testcase_03 AC 569 ms
76,084 KB
testcase_04 AC 558 ms
76,240 KB
testcase_05 AC 634 ms
77,036 KB
testcase_06 AC 637 ms
77,060 KB
testcase_07 AC 114 ms
77,144 KB
testcase_08 AC 112 ms
76,772 KB
testcase_09 AC 89 ms
76,652 KB
testcase_10 AC 89 ms
76,856 KB
testcase_11 AC 44 ms
60,072 KB
testcase_12 AC 44 ms
59,024 KB
testcase_13 AC 61 ms
75,132 KB
testcase_14 AC 65 ms
76,180 KB
testcase_15 AC 64 ms
76,108 KB
testcase_16 AC 63 ms
76,232 KB
testcase_17 AC 64 ms
76,112 KB
testcase_18 AC 63 ms
75,724 KB
testcase_19 AC 62 ms
76,404 KB
testcase_20 AC 59 ms
74,000 KB
testcase_21 AC 62 ms
76,368 KB
testcase_22 AC 61 ms
74,976 KB
testcase_23 AC 58 ms
74,516 KB
testcase_24 AC 57 ms
74,392 KB
testcase_25 AC 56 ms
74,092 KB
testcase_26 AC 56 ms
73,556 KB
testcase_27 AC 56 ms
73,640 KB
testcase_28 AC 57 ms
74,196 KB
testcase_29 AC 57 ms
74,488 KB
testcase_30 AC 56 ms
74,020 KB
testcase_31 AC 56 ms
73,972 KB
testcase_32 AC 56 ms
72,956 KB
testcase_33 AC 57 ms
74,520 KB
testcase_34 AC 545 ms
76,108 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