Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to write code to realize integer stitching

2025-02-24 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/03 Report--

This article mainly introduces "how to write code to realize integer splicing". In daily operation, I believe many people have doubts about how to write code to realize integer splicing. Xiaobian consulted all kinds of materials and sorted out simple and easy operation methods. I hope to help you answer the doubts about "how to write code to realize integer splicing"! Next, please follow the small series to learn together!

#include#include#include#include#includeusing namespace std;int n,k;const int N = 100010;int s[11][N];int a[N];int main(){ cin >> n >> k; for(int i = 0;i < n;i++){ scanf("%d", &a[i]); } for(int i = 0; i < n; i++){ long long t = a[i] % k; for(int j = 0; j < 11; j++){ s[j][t] ++; t = t * 10 % k; } } long long res = 0; for(int i = 0; i < n; i++){ long long t = a[i] % k; //look at the number of digits of a number int len = to_string(a[i]).size(); res += s[len][(k - t) % k]; long long r = t; while(len --) r = r * 10 % k; if(r == (k - t) % k) res--; } cout

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report