結果

問題 No.587 七対子
ユーザー ThhG_9l3ThhG_9l3
提出日時 2018-05-06 00:28:55
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 913 bytes
コンパイル時間 1,995 ms
コンパイル使用メモリ 76,824 KB
実行使用メモリ 41,512 KB
最終ジャッジ日時 2024-06-28 02:03:15
合計ジャッジ時間 7,232 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
41,512 KB
testcase_01 AC 124 ms
41,088 KB
testcase_02 AC 124 ms
41,512 KB
testcase_03 AC 119 ms
40,960 KB
testcase_04 AC 108 ms
39,872 KB
testcase_05 WA -
testcase_06 AC 109 ms
40,064 KB
testcase_07 AC 106 ms
39,872 KB
testcase_08 AC 121 ms
41,328 KB
testcase_09 WA -
testcase_10 AC 131 ms
41,464 KB
testcase_11 AC 129 ms
41,168 KB
testcase_12 AC 129 ms
41,252 KB
testcase_13 AC 121 ms
41,348 KB
testcase_14 AC 119 ms
41,024 KB
testcase_15 AC 123 ms
41,300 KB
testcase_16 AC 108 ms
39,872 KB
testcase_17 AC 123 ms
41,032 KB
testcase_18 AC 106 ms
40,232 KB
testcase_19 AC 123 ms
41,420 KB
testcase_20 AC 110 ms
39,936 KB
testcase_21 AC 109 ms
40,064 KB
testcase_22 AC 121 ms
41,216 KB
testcase_23 AC 122 ms
41,084 KB
testcase_24 AC 122 ms
41,512 KB
testcase_25 AC 125 ms
41,084 KB
testcase_26 AC 123 ms
41,312 KB
testcase_27 AC 122 ms
41,128 KB
testcase_28 AC 123 ms
41,196 KB
testcase_29 AC 124 ms
41,124 KB
testcase_30 AC 119 ms
40,916 KB
testcase_31 AC 121 ms
41,292 KB
testcase_32 AC 121 ms
41,084 KB
testcase_33 WA -
testcase_34 AC 120 ms
41,072 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukikoda;

import java.util.Scanner;
public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		char[] ch = new char[13];
		String str = sc.next();
		int count = 0;
		char[] alpha = {'a','b','c','d','e','f','g','h','i','j','k','l','m','n','o','p','q','r','s','t','u','v','w','x','y','z'};

		for(int i=0; i<ch.length; i++) {
			ch[i] = str.charAt(i);
		}

		for(int k=0; k<12; k++) {
			for(int m=k+1; m<13; m++) {
				if(ch[k] == ch[m] && ch[k] != '/' && ch[m] != '/') {
					for(int n=0; n<alpha.length; n++) {
						if(alpha[n] == ch[k]) {
							if(alpha[n] != '/') {
								count++;
								alpha[n] = '/';
							}
						}
					}
					ch[k] = '/';
					ch[m] = '/';
				}
			}
		}

		if(count == 6) {
			for(int l=0; l<13; l++) {
				if(ch[l] != '/') {
						System.out.print(ch[l]);
					}
				}
			}else {
				System.out.println("Impossible");
		}
	}
}
0