結果

問題 No.205 マージして辞書順最小
ユーザー Shel_RainShel_Rain
提出日時 2016-10-26 17:26:20
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 1,558 bytes
コンパイル時間 4,674 ms
コンパイル使用メモリ 85,092 KB
実行使用メモリ 57,912 KB
最終ジャッジ日時 2024-11-24 03:51:44
合計ジャッジ時間 8,097 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
41,460 KB
testcase_01 AC 127 ms
41,148 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 136 ms
41,532 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 199 ms
45,460 KB
testcase_11 AC 203 ms
45,484 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 130 ms
41,676 KB
testcase_15 AC 112 ms
40,276 KB
testcase_16 AC 115 ms
40,240 KB
testcase_17 WA -
testcase_18 AC 127 ms
41,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.util.Map.Entry;

public class DescOrder {
    public static void main(String[] args) {
        // 自分の得意な言語で
        // Let's チャレンジ!!
        Scanner sc = new Scanner(System.in);
        String line = sc.nextLine();
        List<String> input = new ArrayList<>();
        int totalLength = 0;
        for (int i = 0; i < Integer.parseInt(line); i ++) {
        	String str = sc.nextLine();
        	input.add(str);
        	totalLength += str.length();
        }
        String result = "";
        for (int i = 0; i < totalLength; i ++) {
        	String lastChar = getLastestChar(input);
        	if (lastChar != null) {
        		result += lastChar;
        	} else {
        		break;
        	}
        }
        
//        String reverseResult = new StringBuilder(result).reverse().toString();
        System.out.println(result);
    }
    
    public static String getLastestChar(List<String> input) {
    	String result = null;
    	int deleteIndex = 0;
    	char str = 'z';
    	for (int i = 0; i < input.size(); i ++) {
    		if (!input.get(i).isEmpty()) {
    			String tmp = input.get(i);
    			if (tmp.substring(0,1).toCharArray()[0] <= str) {
    				str = tmp.substring(0,1).toCharArray()[0];
    				deleteIndex = i;
    			}
    			result = String.valueOf(str);
    		} else {
    			continue;
    		}
    	}
    	if (result != null) {
    		input.set(deleteIndex, input.get(deleteIndex).substring(1,input.get(deleteIndex).length()));
    	}
    	return result;
    }
    
}



0