結果

問題 No.313 π
ユーザー 37zigen37zigen
提出日時 2016-03-07 03:19:36
言語 Java21
(openjdk 21)
結果
AC  
実行時間 254 ms / 5,000 ms
コード長 708 bytes
コンパイル時間 2,549 ms
コンパイル使用メモリ 76,920 KB
実行使用メモリ 58,184 KB
最終ジャッジ日時 2024-09-24 15:05:00
合計ジャッジ時間 11,723 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 248 ms
57,584 KB
testcase_01 AC 240 ms
57,356 KB
testcase_02 AC 240 ms
57,564 KB
testcase_03 AC 241 ms
57,308 KB
testcase_04 AC 243 ms
57,876 KB
testcase_05 AC 244 ms
57,496 KB
testcase_06 AC 253 ms
58,184 KB
testcase_07 AC 250 ms
56,936 KB
testcase_08 AC 228 ms
57,336 KB
testcase_09 AC 236 ms
57,136 KB
testcase_10 AC 244 ms
56,892 KB
testcase_11 AC 233 ms
57,264 KB
testcase_12 AC 244 ms
57,416 KB
testcase_13 AC 246 ms
57,388 KB
testcase_14 AC 242 ms
57,676 KB
testcase_15 AC 240 ms
57,468 KB
testcase_16 AC 232 ms
57,900 KB
testcase_17 AC 235 ms
58,000 KB
testcase_18 AC 254 ms
57,336 KB
testcase_19 AC 247 ms
57,768 KB
testcase_20 AC 244 ms
57,692 KB
testcase_21 AC 239 ms
57,564 KB
testcase_22 AC 241 ms
57,556 KB
testcase_23 AC 238 ms
56,772 KB
testcase_24 AC 240 ms
57,772 KB
testcase_25 AC 242 ms
57,348 KB
testcase_26 AC 244 ms
57,196 KB
testcase_27 AC 244 ms
57,420 KB
testcase_28 AC 237 ms
56,812 KB
testcase_29 AC 241 ms
57,668 KB
testcase_30 AC 243 ms
57,400 KB
testcase_31 AC 244 ms
57,704 KB
testcase_32 AC 247 ms
57,800 KB
testcase_33 AC 245 ms
57,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.PrintWriter;
import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws Exception {
		PrintWriter pw=new PrintWriter(System.out);
		Scanner sc=new Scanner(System.in);
		int[] num={20104,20063,19892,20011,19874,20199,19898,20163,19956,19841};

		String s=sc.next();
		char[] c=new char[s.length()];
		int cnt[]=new int[10];
		for(int i=0;i<s.length();i++){
			try{
				cnt[Character.getNumericValue(s.charAt(i))]++;
			}catch(Exception e){
			}
		}
		int wrong=0,correct=0;
		for(int i=0;i<10;i++){
			if(num[i]-1==cnt[i]){
				correct=i;
			}
			if(num[i]+1==cnt[i]){
				wrong=i;
			}
		}
		pw.println(wrong+" "+correct);

		sc.close();
		pw.close();
	}

}
0