結果

問題 No.587 七対子
ユーザー Pump0129Pump0129
提出日時 2018-03-26 22:14:39
言語 Java21
(openjdk 21)
結果
AC  
実行時間 136 ms / 2,000 ms
コード長 1,742 bytes
コンパイル時間 2,552 ms
コンパイル使用メモリ 80,368 KB
実行使用メモリ 41,680 KB
最終ジャッジ日時 2024-07-19 19:52:33
合計ジャッジ時間 8,142 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
41,416 KB
testcase_01 AC 132 ms
41,148 KB
testcase_02 AC 132 ms
41,680 KB
testcase_03 AC 133 ms
41,176 KB
testcase_04 AC 130 ms
41,348 KB
testcase_05 AC 132 ms
41,332 KB
testcase_06 AC 132 ms
41,244 KB
testcase_07 AC 132 ms
41,148 KB
testcase_08 AC 132 ms
41,424 KB
testcase_09 AC 118 ms
40,148 KB
testcase_10 AC 132 ms
41,300 KB
testcase_11 AC 131 ms
41,256 KB
testcase_12 AC 131 ms
41,396 KB
testcase_13 AC 118 ms
40,252 KB
testcase_14 AC 133 ms
41,232 KB
testcase_15 AC 131 ms
41,092 KB
testcase_16 AC 117 ms
40,144 KB
testcase_17 AC 132 ms
41,180 KB
testcase_18 AC 132 ms
41,364 KB
testcase_19 AC 133 ms
41,008 KB
testcase_20 AC 134 ms
41,320 KB
testcase_21 AC 133 ms
41,000 KB
testcase_22 AC 133 ms
41,436 KB
testcase_23 AC 133 ms
41,392 KB
testcase_24 AC 134 ms
41,260 KB
testcase_25 AC 133 ms
41,024 KB
testcase_26 AC 118 ms
40,284 KB
testcase_27 AC 132 ms
41,316 KB
testcase_28 AC 135 ms
41,532 KB
testcase_29 AC 132 ms
41,048 KB
testcase_30 AC 134 ms
41,396 KB
testcase_31 AC 129 ms
41,180 KB
testcase_32 AC 130 ms
41,436 KB
testcase_33 AC 132 ms
41,404 KB
testcase_34 AC 136 ms
41,440 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;
                            }
                        } else if(3 <= i){
                            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