咖啡


私信TA

用户名:Tianxn

访问量:138168

签 名:

十年OI一场空,不开LL见祖宗。

等  级
排  名 10
经  验 27303
参赛次数 10
文章发表 197
年  龄 22
在职情况 学生
学  校 西安电子科技大学
专  业 软件工程

  自我简介:

解题思路:

注意事项:


Java还真是占内存啊,明天用C写



参考代码:

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner cin = new Scanner(System.in);
		int n = cin.nextInt();
		int cnt = 0;
		for(int i = 0; i < n; ++i) {
			int z = i+i+1+i+2;
			if(fun(i, z) && fun(i+1, z) && fun(i+2, z)) {
				cnt++;
			}
		}
		System.out.println(cnt);
		cin.close();
	}
	public static boolean fun(int a, int b) {
		String x = String.valueOf(a);
		String y = String.valueOf(b);
		if(x.length() != y.length()) {
			return false;
		}
		for(int i = 0; i < x.length(); ++i) {
			if(x.charAt(i) > y.charAt(i)) {
				return false;
			}
		}
		return true;
	}
}


 

0.0分

4 人评分

  评论区

  • «
  • »