結果

問題 No.587 七対子
ユーザー Pump0129Pump0129
提出日時 2018-03-26 22:11:58
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,653 bytes
コンパイル時間 2,430 ms
コンパイル使用メモリ 80,324 KB
実行使用メモリ 41,584 KB
最終ジャッジ日時 2024-06-25 07:26:47
合計ジャッジ時間 8,241 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
40,968 KB
testcase_01 AC 132 ms
41,076 KB
testcase_02 AC 133 ms
41,208 KB
testcase_03 AC 133 ms
41,384 KB
testcase_04 AC 133 ms
41,000 KB
testcase_05 AC 133 ms
41,344 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 131 ms
41,148 KB
testcase_10 AC 131 ms
40,984 KB
testcase_11 WA -
testcase_12 AC 129 ms
41,176 KB
testcase_13 AC 129 ms
41,168 KB
testcase_14 AC 130 ms
41,112 KB
testcase_15 AC 120 ms
40,808 KB
testcase_16 AC 131 ms
41,140 KB
testcase_17 AC 130 ms
41,120 KB
testcase_18 AC 131 ms
41,132 KB
testcase_19 AC 133 ms
41,208 KB
testcase_20 AC 131 ms
41,348 KB
testcase_21 AC 131 ms
41,088 KB
testcase_22 AC 129 ms
41,072 KB
testcase_23 AC 129 ms
41,432 KB
testcase_24 AC 130 ms
41,440 KB
testcase_25 AC 132 ms
41,164 KB
testcase_26 AC 130 ms
41,204 KB
testcase_27 AC 131 ms
41,048 KB
testcase_28 WA -
testcase_29 AC 131 ms
41,004 KB
testcase_30 AC 114 ms
40,180 KB
testcase_31 AC 116 ms
39,836 KB
testcase_32 AC 129 ms
41,248 KB
testcase_33 AC 127 ms
41,196 KB
testcase_34 AC 128 ms
40,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package net.ipipip0129.yukicoder.no587;

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner scan = new Scanner(System.in);

        //文字列ソート処理
        List<String> piece_list = Arrays.asList(scan.nextLine().split(""));
        Collections.sort(piece_list);
        String piece = "";
        for (String tile : piece_list) piece += tile;

        // テキスト終了用 0x03 付与
        piece += String.valueOf((char) 0x03);

        scan.close();

        char missing = 0x00;
        boolean isError = false;

        while (piece.length() != 0 && !isError){
            char c_pair = 0x00;
            for (int i = 0; i < piece.length() ; i++){
                if (i == 0) c_pair = piece.charAt(i);
                else {
                    if (c_pair != piece.charAt(i)) {
                        if (i == 1){
                            if (missing == 0x00) {
                                missing = c_pair;
                            }else {
                                isError = true;
                            }
                        }
                        piece = piece.replaceAll(String.valueOf(c_pair), "");
                        break;
                    }
                }
            }
            //残テキストが0x03のみなら終了
            if (piece.charAt(0) == 0x03) {
                break;
            }
        }

        if (isError || missing == 0x00) {
            System.out.println("Impossible");
        }else {
            System.out.println(missing);
        }
    }
}
0