結果

問題 No.313 π
ユーザー uafr_csuafr_cs
提出日時 2015-12-06 00:12:04
言語 Java
(openjdk 23)
結果
AC  
実行時間 276 ms / 5,000 ms
コード長 1,023 bytes
コンパイル時間 2,708 ms
コンパイル使用メモリ 83,804 KB
実行使用メモリ 44,772 KB
最終ジャッジ日時 2024-09-14 14:34:55
合計ジャッジ時間 13,241 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 32
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.HashSet;
import java.util.LinkedList;
import java.util.Scanner;
import java.util.Set;

public class Main {
	
	static int[] counts = new int[]{
			20104,
			20063,
			19892,
			20011,
			19874,
			20199,
			19898,
			20163,
			19956,
			19841
	};
	
	public static int[] process(char[] inputs, boolean output){
		int[] arr = new int[10];
		for(final char ch : inputs){
			if(!Character.isDigit(ch)){ continue; }
			
			arr[Character.getNumericValue(ch)]++;
		}
		
		if(!output){ return arr; }
		
		
		for(final int a : arr){ System.out.println(a + ","); }
		
		return arr;
	}
	
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		
		char[] input = sc.next().toCharArray();
		boolean debug = false;
		
		int[] arr = process(input, debug);
		
		
		int less = -1, more = -1;
		for(int i = 0; i < 10; i++){
			if(counts[i] < arr[i]){
				more = i;
			}else if(counts[i] > arr[i]){
				less = i;
			}
		}
		
		System.out.println(more + " " + less);
		
	}

}
0