首页 > 其他分享 >考研机试题:Old Bill

考研机试题:Old Bill

时间:2025-01-19 21:02:32浏览次数:3  
标签:digits 火鸡 Old 数字 turkeys price Bill faded 考研

描述

Among grandfather's papers a bill was found.     72 turkeys $_679_     The first and the last digits of the number that obviously represented the total price of those turkeys are replaced here by blanks (denoted _), for they are faded and are illegible. What are the two faded digits and what was the price of one turkey?     We want to write a program that solves a general version of the above problem.     N turkeys $_XYZ_     The total number of turkeys, N, is between 1 and 99, including both. The total price originally consisted of five digits, but we can see only the three digits in the middle. We assume that the first digit is nonzero, that the price of one turkeys is an integer number of dollars, and that all the turkeys cost the same price.     Given N, X, Y, and Z, write a program that guesses the two faded digits and the original price. In case that there is more than one candidate for the original price, the output should be the most expensive one. That is, the program is to report the two faded digits and the maximum price per turkey for the turkeys.

翻译:

在祖父的文件中发现了一张帐单:72 只火鸡共 $_679_  。显然代表这些火鸡总价的数字的第一个和最后一个数字在这里被空白(标记为_)所取代,因为它们已经褪色,难以辨认。那两个褪色的数字是什么,一只火鸡的价格是多少?我们要编写一个程序来解决上述问题。N只火鸡共$_XYZ_ N只火鸡的总数在1到99之间。总价本来是五位数字,但是我们只能看到中间的三位数字。我们假设第一个数字非零,一只火鸡的价格是整数美元,所有火鸡的价格相同。给定N, X, Y和Z,编写一个程序,猜测两个褪色的数字和原始价格。如果原始价格有多个候选,则输出应该是最昂贵的。也就是说,程序要算出这两个褪色的数字和每只火鸡的最高价格。

输入描述:

The first line of the input file contains an integer N (0<N<100), which represents the number of turkeys. In the following line, there are the three decimal digits X, Y, and Z., separated by a space, of the original price $_XYZ_.

翻译:

输入文件的第一行包含一个整数N (0<N<100),它表示火鸡的数量。在下一行中,原始价格$_XYZ_有三个十进制数字X、Y和Z,用空格分隔。

输出描述:

 For each case, output the two faded digits and the maximum price per turkey for the turkeys.

翻译:

对于每种情况,输出两个褪色的数字和火鸡每只火鸡的最高价格。

输入

72
6 7 9
5
2 3 7
78
0 0 5

输出

3 2 511
9 5 18475
0

代码

#include<bits/stdc++.h>
using namespace std;

int main(){
	int n,x,y,z,money=0,ans,price,maxi,maxj,maxprice=-1;
	while (scanf("%d%d%d%d",&n,&x,&y,&z)!=EOF) {//循环输入多组数据
		ans=0;
		for(int i=1;i<=9;i++){//i是最高位不能为0
			for(int j=0;j<=9;j++){//j是最低位可以为0
			money=i*10000+x*1000+y*100+z*10+j;		
			price=money/n;
			if(price*n==money){
				ans=1;
				if(maxprice<price){//记录最大单价
					maxprice=price;
					maxi=i;
					maxj=j;
				}	
			}
			}
		}
		if(ans){
		printf("%d %d %d\n",maxi,maxj,maxprice);
		}
		else
			printf("0\n");

	}
}

标签:digits,火鸡,Old,数字,turkeys,price,Bill,faded,考研
From: https://blog.csdn.net/weixin_56259838/article/details/145193263

相关文章

  • 考研机试:水仙花数
    描述春天是鲜花的季节,水仙花就是其中最迷人的代表,数学上有个水仙花数,它是这样定义的:“水仙花数”是指一个三位数,它的各位数字的立方和等于其本身,比如:现在要求输出所有在 m 和 n范围内的水仙花数。输入格式输入包含多组测试数据。每组数据占一行,包含两个整数 m和 n......
  • 计算机毕业设计Python+CNN卷积神经网络考研院校推荐系统 考研分数线预测 考研推荐系统
    温馨提示:文末有CSDN平台官方提供的学长联系方式的名片!温馨提示:文末有CSDN平台官方提供的学长联系方式的名片!温馨提示:文末有CSDN平台官方提供的学长联系方式的名片!作者简介:Java领域优质创作者、CSDN博客专家、CSDN内容合伙人、掘金特邀作者、阿里云博客专家、51CTO......
  • 【25考研】卷王之王!北大计算机&软件复试攻略!
    一、复试内容复试形式:机试+面试复试规则: 二、推荐书目 《数据结构》严蔚敏,清华大学出版社《计算机组成原理》唐朔飞,高等教育出版社《计算机组成原理》白中英,科学出版社《计算机操作系统(修订版)》汤子瀛,西安电子科技大学出版社《计算机网络(第五版)》谢希仁,电......
  • YOLOv11改进策略【Neck】| NeurIPS 2023 融合GOLD-YOLO颈部结构,强化小目标检测能力
    一、本文介绍本文主要利用GOLD-YOLO中的颈部结构优化YOLOv11的网络模型。GOLD-YOLO颈部结构中的GD机制借鉴了全局信息融合的理念,通过独特的模块设计,在不显著增加延迟的情况下,高效融合不同层级的特征信息。将其应用于YOLOv11的改进过程中,能够使模型更有效地整合多尺度特......
  • 计算机毕业设计Springboot“聚力”考研互助系统 “助力”考研互助平台基于Springboot
    计算机毕业设计Springboot“聚力”考研互助系统vldh9109(配套有源码程序mysql数据库论文)本套源码可以先看具体功能演示视频领取,文末有联xi可分享随着考研竞争的日益激烈,考生们对于信息和资源的需求也日益增长。传统的信息获取方式已难以满足考生多样化的需求,因此,开发一个......
  • pg_controldata的使用方法
    [omm@txy~]$pg_controldata/openGauss/data/dnpg_controlversionnumber:923Catalogversionnumber:201611171Databasesystemidentifier:5932367657193972969Databaseclusterstate:inproductionpg_contr......
  • CS61B srping 2018 proj1Gold-Autograding https://sp18.datastructur.es/ 我放弃了
    介绍和GettingtheSkeletonFiles想办法找到下面四个文件这个proj要编写一个autoGrader,提供如下文件:StudentArrayDeque.java:AbuggyimplementationofArrayDeque.有错误的ArrayDequeArrayDequeSolution.java:AcorrectimplementationofArrayDeque.正确的ArrayDequ......
  • 中国科学院大学2025年数学分析考研真题
     中国科学院大学2025年数学分析考研真题1.(25分)计算下列极限.(1)$\displaystyle\lim_{x\to1}x^{\frac1{1-x}}$.(2)$\displaystyle\lim_{n\to\infty}\frac{1}{n^{4}}\left(1+2^{3}+\cdots+n^{3}\right)$.2.用闭区间套定理证明$[0,1]$不可数. 3.设$f(x)$在$[0,1]$上连......
  • 考研机试题:反序数
    描述设N是一个四位数,它的9倍恰好是其反序数(例如:1234的反序数是4321)求N的值输入描述:程序无任何输入数据。输出描述:输出题目要求的四位数,如果结果有多组,则每组结果之间以回车隔开。输入无输出代码#include<iostream>usingnamespacestd;intmain(){......
  • 考研机试题
    abc描述设a、b、c均是0到9之间的数字,abc、bcc是两个三位数,且有:abc+bcc=532。求满足条件的所有a、b、c的值。输入描述:题目没有任何输入。输出描述:请输出所有满足题目条件的a、b、c的值。a、b、c之间用空格隔开。每个输出占一行。输入无输出321代码#include......