結果

問題 No.587 七対子
ユーザー fal_rndfal_rnd
提出日時 2018-04-07 01:24:06
言語 Java21
(openjdk 21)
結果
AC  
実行時間 124 ms / 2,000 ms
コード長 605 bytes
コンパイル時間 2,547 ms
コンパイル使用メモリ 91,156 KB
実行使用メモリ 41,724 KB
最終ジャッジ日時 2024-07-19 19:52:57
合計ジャッジ時間 7,442 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
41,344 KB
testcase_01 AC 111 ms
40,776 KB
testcase_02 AC 106 ms
40,488 KB
testcase_03 AC 106 ms
40,092 KB
testcase_04 AC 120 ms
41,628 KB
testcase_05 AC 117 ms
41,612 KB
testcase_06 AC 115 ms
41,308 KB
testcase_07 AC 122 ms
41,344 KB
testcase_08 AC 105 ms
40,192 KB
testcase_09 AC 118 ms
41,108 KB
testcase_10 AC 124 ms
41,368 KB
testcase_11 AC 119 ms
41,400 KB
testcase_12 AC 105 ms
40,168 KB
testcase_13 AC 105 ms
40,072 KB
testcase_14 AC 106 ms
40,100 KB
testcase_15 AC 112 ms
41,164 KB
testcase_16 AC 114 ms
41,480 KB
testcase_17 AC 103 ms
40,348 KB
testcase_18 AC 113 ms
40,112 KB
testcase_19 AC 120 ms
41,724 KB
testcase_20 AC 107 ms
39,984 KB
testcase_21 AC 114 ms
41,124 KB
testcase_22 AC 110 ms
40,880 KB
testcase_23 AC 106 ms
40,172 KB
testcase_24 AC 105 ms
40,312 KB
testcase_25 AC 104 ms
40,104 KB
testcase_26 AC 114 ms
41,180 KB
testcase_27 AC 105 ms
40,292 KB
testcase_28 AC 102 ms
40,024 KB
testcase_29 AC 112 ms
41,416 KB
testcase_30 AC 102 ms
40,360 KB
testcase_31 AC 114 ms
41,080 KB
testcase_32 AC 113 ms
41,212 KB
testcase_33 AC 111 ms
41,280 KB
testcase_34 AC 105 ms
40,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.HashMap;
import java.util.Map;
import java.util.Scanner;

class Main{
	static Scanner s=new Scanner(System.in);
	public static void main(String[]$){
		Map<Integer,Integer> c=new HashMap<>();
		s.next().chars().forEach(i->c.merge(i,1,Integer::sum));

		int[] a=c.values().stream()
				.mapToInt(i->i)
				.sorted().toArray();
		if(Arrays.equals(a,new int[]{1,2,2,2,2,2,2})){
			System.out.println(
					(char)(int)
					c.entrySet().stream()
							.filter(o->o.getValue()==1)
							.findFirst().get().getKey());
		}else
			System.out.println("Impossible");
	}
}
0