結果

問題 No.548 国士無双
ユーザー fal_rndfal_rnd
提出日時 2017-08-25 23:20:21
言語 Java21
(openjdk 21)
結果
AC  
実行時間 130 ms / 2,000 ms
コード長 789 bytes
コンパイル時間 2,514 ms
コンパイル使用メモリ 83,880 KB
実行使用メモリ 54,364 KB
最終ジャッジ日時 2024-09-17 13:45:31
合計ジャッジ時間 6,106 ms
ジャッジサーバーID
(参考情報)
judge4 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
54,364 KB
testcase_01 AC 122 ms
53,948 KB
testcase_02 AC 119 ms
53,968 KB
testcase_03 AC 128 ms
53,936 KB
testcase_04 AC 124 ms
54,140 KB
testcase_05 AC 109 ms
52,936 KB
testcase_06 AC 124 ms
53,912 KB
testcase_07 AC 123 ms
54,248 KB
testcase_08 AC 110 ms
53,080 KB
testcase_09 AC 115 ms
54,100 KB
testcase_10 AC 117 ms
53,828 KB
testcase_11 AC 125 ms
54,132 KB
testcase_12 AC 125 ms
54,064 KB
testcase_13 AC 111 ms
52,988 KB
testcase_14 AC 122 ms
53,928 KB
testcase_15 AC 122 ms
53,756 KB
testcase_16 AC 122 ms
53,912 KB
testcase_17 AC 129 ms
54,044 KB
testcase_18 AC 130 ms
54,140 KB
testcase_19 AC 124 ms
54,036 KB
testcase_20 AC 129 ms
54,228 KB
testcase_21 AC 126 ms
54,164 KB
testcase_22 AC 126 ms
54,100 KB
testcase_23 AC 129 ms
54,188 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.HashSet;
import java.util.Scanner;
import java.util.stream.IntStream;

public class Main{
	static IntStream REPS(int v){return IntStream.range(0,v);}
	static IntStream REPS(int l,int r){return IntStream.rangeClosed(l,r);}
	static IntStream INS(int n) {return REPS(n).map(i->getInt());}
	static Scanner s=new Scanner(System.in);
	static int getInt(){return Integer.parseInt(s.next());}

	public static void main(String[]$){
		HashSet<Integer>r=new HashSet<>();
		"abcdefghijklm".chars().forEach(r::add);
		s.next().chars().forEach(r::remove);

		if(r.size()==1)
			System.out.println((char)(int)r.stream().findAny().get());
		else if(r.isEmpty())
			"abcdefghijklm".chars().mapToObj(i->(char)i).forEach(System.out::println);
		else
			System.out.println("Impossible");
	}
}
0