博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
poj3331
阅读量:6253 次
发布时间:2019-06-22

本文共 693 字,大约阅读时间需要 2 分钟。

高精度

java做

ContractedBlock.gif
ExpandedBlockStart.gif
View Code
import java.io.*; import java.util.*; import java.math.*; public class Main {
static public void main(String[] args) {
Scanner cin = new Scanner(new BufferedInputStream(System.in)); int t = cin.nextInt(); while (t-- != 0) {
int a = cin.nextInt(); String s = cin.next(); char ch = s.charAt(0); BigInteger ans = new BigInteger("1"); for (int i = 2; i <= a; i++) ans = ans.multiply(BigInteger.valueOf(i)); s = ans.toString(); int len = s.length(); int x = 0; for (int i = 0; i < len; i++) if (s.charAt(i) == ch) x++; System.out.println(x); } } }

转载地址:http://hpysa.baihongyu.com/

你可能感兴趣的文章
指尖下的js —— 多触式web前端开发之三:处理复杂手势(转)
查看>>
spring boot项目配置文件集合
查看>>
cube-ui的用法
查看>>
2015.4.21 SetWindowPos函数用法
查看>>
2011-12-14 调用cmd并获得输入输出+网络访问
查看>>
TCP定时器详解
查看>>
if判断,switch语句
查看>>
Arduino入门之前
查看>>
zoj 1904 Beavergnaw 计算圆柱和圆台的体积
查看>>
整理了一份招PHP高级工程师的面试题(转)
查看>>
学习Raft算法的笔记
查看>>
第十一周编程总结
查看>>
darknet源码学习
查看>>
dl,dt,dd的用法
查看>>
外面的世界很精彩,然而等待你的人却可能已不在
查看>>
华为oj 挑7
查看>>
【吴恩达机器学习】学习笔记——1.5无监督学习
查看>>
使用pjax实现类似github无刷新更改页面url
查看>>
移动端头部meta
查看>>
回溯法
查看>>