結果

問題 No.548 国士無双
ユーザー tsunabittsunabit
提出日時 2019-06-17 22:27:50
言語 Java21
(openjdk 21)
結果
AC  
実行時間 129 ms / 2,000 ms
コード長 1,097 bytes
コンパイル時間 4,014 ms
コンパイル使用メモリ 78,484 KB
実行使用メモリ 54,344 KB
最終ジャッジ日時 2024-05-06 18:09:13
合計ジャッジ時間 7,632 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
54,168 KB
testcase_01 AC 124 ms
53,840 KB
testcase_02 AC 126 ms
53,876 KB
testcase_03 AC 126 ms
54,136 KB
testcase_04 AC 127 ms
53,880 KB
testcase_05 AC 127 ms
53,888 KB
testcase_06 AC 126 ms
53,928 KB
testcase_07 AC 111 ms
53,052 KB
testcase_08 AC 125 ms
54,028 KB
testcase_09 AC 128 ms
53,916 KB
testcase_10 AC 129 ms
54,344 KB
testcase_11 AC 128 ms
54,228 KB
testcase_12 AC 129 ms
54,148 KB
testcase_13 AC 125 ms
54,080 KB
testcase_14 AC 123 ms
54,100 KB
testcase_15 AC 126 ms
53,868 KB
testcase_16 AC 124 ms
54,112 KB
testcase_17 AC 129 ms
53,984 KB
testcase_18 AC 127 ms
54,320 KB
testcase_19 AC 127 ms
54,208 KB
testcase_20 AC 129 ms
54,300 KB
testcase_21 AC 127 ms
54,200 KB
testcase_22 AC 129 ms
54,044 KB
testcase_23 AC 127 ms
54,028 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
import java.math.*;

public class No548 {
    public static void main(String[] args) {
    	Scanner sc = new Scanner(System.in);
    	String s = sc.next();
    	HashMap<Character, Integer> hm = new HashMap<Character, Integer>();
    	
    	for(int i = 0; i < s.length(); i++) {
    		if(hm.containsKey(s.charAt(i))) {
    			hm.put(s.charAt(i), hm.get(s.charAt(i)) + 1);
    		}else {
    			hm.put(s.charAt(i), 1);
    		}
    	}
    	int max = 0, min = 13, c = 0;
    	for (char k : hm.keySet()) {
    		if(2 < hm.get(k)) {
    			System.out.println("Impossible");
    			return;
    		}else if(hm.get(k) == 2) {
    			c++;
    		}
    	}
    	if(c > 1) {
    		System.out.println("Impossible");
    	}else {
    		char[] moji = {'a','b','c','d','e','f','g','h','i','j','k','l','m'};
    		if(c == 1) {
    			for(int i = 0; i < 13; i++) {
    				if(!hm.containsKey(moji[i])) {
    					System.out.println(moji[i]);
    				}
    			}
    		}else {
    			for(int i = 0; i < 13; i++) {
    				System.out.println(moji[i]);
    			}
    		}
    	}
    }
}
0