/ neko /

记录详情

Accepted


  
# 状态 耗时 内存占用
#1 Accepted 119ms 10.27 MiB
#2 Accepted 119ms 10.234 MiB
#3 Accepted 312ms 27.906 MiB
#4 Accepted 140ms 10.832 MiB
#5 Accepted 354ms 44.559 MiB
#6 Accepted 287ms 27.945 MiB
#7 Accepted 122ms 10.254 MiB
#8 Accepted 281ms 27.883 MiB
#9 Accepted 355ms 44.375 MiB
#10 Accepted 383ms 45.125 MiB

代码

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner in=new Scanner(System.in);
        int n=in.nextInt();
        String temp=in.next();
        char x=temp.charAt(0);
        int ans=0;
        StringBuffer a=new StringBuffer();
        for (int i=1;i<=n;i++){
            a.append(i);
        }
        for (int i=0;i<a.length();i++){
            if (a.charAt(i)==x){
                ans++;
            }
        }
        System.out.println(ans);
    }

}

信息

递交者
类型
递交
题目
P1007 记数问题
比赛
暑假摸鱼第二弹
题目数据
下载
语言
Java
递交时间
2021-02-05 22:34:17
评测时间
2021-02-05 23:14:36
评测机
分数
100
总耗时
2476ms
峰值内存
45.125 MiB