# 读取输入的两个整数 x 和 y
x, y =map(int,input().split())# 定义函数,找到满足条件的最小 z 值deffind_min_z(x, y):
z =1# 初始化 z 为 1# 循环查找,直到满足条件 26^y * 10^z >= xwhile26**y *10**z < x:
z +=1# 如果条件不满足,增加 zreturn z # 返回满足条件的最小 z 值# 输出结果print(find_min_z(x, y))
class="hljs-button signin active" data-title="登录复制" data-report-click="{"spm":"1001.2101.3001.4334"}">
1
2
3
4
5
6
7
8
9
10
11
12
13
14
java解法
解题思路
importjava.util.Scanner;publicclassMain{publicstaticvoidmain(String[] args){Scanner scanner =newScanner(System.in);// 读取输入的 x 和 ylong x = scanner.nextLong();// x 是目标值int y = scanner.nextInt();// y 是指数// 计算满足条件的最小 zlong minDigits =calculateMinDigits(x, y);System.out.println(minDigits);}/**
* 计算满足条件的最小 z 值
* @param x 目标值
* @param y 指数
* @return 满足条件的最小 z 值
*/privatestaticlongcalculateMinDigits(long x,int y){// 计算 26^y,表示组合数double combinations =Math.pow(26, y);// 如果 x 小于或等于组合数,返回最小值 1if(x <= combinations){return1;}// 计算 log10(x / combinations) 并向上取整return(long)Math.ceil(Math.log10(x / combinations));}}
class="hljs-button signin active" data-title="登录复制" data-report-click="{"spm":"1001.2101.3001.4334"}">
评论记录:
回复评论: