日韩av黄I国产麻豆传媒I国产91av视频在线观看I日韩一区二区三区在线看I美女国产在线I麻豆视频国产在线观看I成人黄色短片

歡迎訪(fǎng)問(wèn) 生活随笔!

生活随笔

當(dāng)前位置: 首頁(yè) >

2017-9-17pat甲级 A

發(fā)布時(shí)間:2025/3/15 25 豆豆
生活随笔 收集整理的這篇文章主要介紹了 2017-9-17pat甲级 A 小編覺(jué)得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.

A. Cut Integer (20)

時(shí)間限制 400 ms
內(nèi)存限制 65536 kB
代碼長(zhǎng)度限制 8000 B
判題程序 Standard 作者 CHEN, Yue

Cutting an integer means to cut a K digits long integer Z into two integers of (K/2) digits long integers A and B. For example, after cutting Z = 167334, we have A = 167 and B = 334. It is interesting to see that Z can be devided by the product of A and B, as 167334 / (167 x 334) = 3. Given an integer Z, you are supposed to test if it is such an integer.

Input Specification:

Each input file contains one test case. For each case, the first line gives a positive integer N (<= 20). Then N lines follow, each gives an integer Z (10<=Z<=231). It is guaranteed that the number of digits of Z is an even number.

Output Specification:

For each case, print a single line "Yes" if it is such a number, or "No" if not.

Sample Input: 3 167334 2333 12345678 Sample Output: Yes No No思路+題意:求給定的一個(gè)偶數(shù)為的整數(shù),將這個(gè)數(shù)分成兩個(gè)長(zhǎng)度相同的數(shù)相乘被原來(lái)的數(shù)取余是否為0;直接求解,將數(shù)分兩半,進(jìn)行相乘求解。注意這里有可能是123000,其結(jié)果就是123*000=0; 這里會(huì)出現(xiàn)浮點(diǎn)錯(cuò)誤,答案就為No。 代碼: #include <iostream> #include <cmath> using namespace std; int main() {int n, num;scanf("%d", &n);for (int i = 0; i < n; i++) {scanf("%d", &num);int len = 0, tempnum = num;while (tempnum != 0) {tempnum = tempnum / 10;len++;}int d = pow(10, len / 2);int a = num % d, b = num / d;if (a * b != 0 && num % (a * b) == 0)printf("Yes\n");elseprintf("No\n");}return 0; }

總結(jié)

以上是生活随笔為你收集整理的2017-9-17pat甲级 A的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問(wèn)題。

如果覺(jué)得生活随笔網(wǎng)站內(nèi)容還不錯(cuò),歡迎將生活随笔推薦給好友。