Submission #335374


Source Code Expand

import java.lang.reflect.Array;
import java.util.*;

public class Main {
	public static void main(String[] args)
	{
		int n;
		Integer [] start, end;
		String[] data;
		Scanner sc = new Scanner(System.in);

		n = sc.nextInt();
		start = new Integer[n];
		end = new Integer[n];
		data = new String[n];
		
		for(int i = 0; i < n; i++) data[i] = sc.next();
		sc.close();
		//時間順(昇順)ソート
		Arrays.sort(data);
		
		//降り始めと振り終わりに分ける
		separate(start,end, n, data);
		
		//雨が振った時間がかぶっている場合合成
		connect(start, end, n);
		
		//重複なしで出力
		normalization(start, end, n);

	}

	private static void separate(Integer[] start, Integer[] end, int n, String[] data)
	{
		int i, tmp;
		for(i = 0; i < n; i++){
			String[] change = (data[i]).split("-");
			marume(start,end,change, i);
			//System.out.println(start[i]);
			//System.out.println(end[i]);
		}
	}
	
	private static void marume(Integer[] start, Integer[] end, String[] change, int i)
	{
		int tmp;
		//start
		tmp = Integer.parseInt(change[0]);
		start[i] = (tmp - (tmp % 5));
	
		//end
		tmp = Integer.parseInt(change[1]) + 4;
		end[i] = tmp - (tmp % 5);
		if(end[i] % 100 == 60) end[i] = end[i] - 60 + 100;
	}

	private static void connect(Integer[] start, Integer[] end, int n)
	{
		int i,k;
		for(i = 0; i < n - 1; i++){
			for(k = i + 1; k < n; k++){
				if(start[k] <= end[i]){
					if(end[k] <= end[i]){
						end[k] = end[i];
					} else {
						end[i] = end[k];
					}
				}

			}
		}
	}

	private static void normalization(Integer[] start, Integer[] end, int n)
	{
		int i;
		System.out.println(String.format("%04d-%04d", start[0], end[0]));
		for(i = 1; i < n; i++){
			//System.out.println(start[i] + "-" + end[i]);
			if(end[i - 1] < start[i]){
				System.out.println(String.format("%04d-%04d", start[i], end[i]));
			}
		}
	}

}

Submission Info

Submission Time
Task D - 感雨時刻の整理
User ne260037
Language Java (OpenJDK 1.7.0)
Score 0
Code Size 1964 Byte
Status TLE
Exec Time 2045 ms
Memory 43380 KB

Judge Result

Set Name all
Score / Max Score 0 / 100
Status
AC × 29
TLE × 19
Set Name Test Cases
all 00_sample_01.txt, 00_sample_02.txt, 00_sample_03.txt, cho_cho_chokudai.txt, chokudai_ga_cho.txt, test_01.txt, test_02.txt, test_03.txt, test_04.txt, test_05.txt, test_06.txt, test_07.txt, test_08.txt, test_09.txt, test_10.txt, test_11.txt, test_12.txt, test_13.txt, test_14.txt, test_15.txt, test_16.txt, test_17.txt, test_18.txt, test_19.txt, test_20.txt, test_21.txt, test_22.txt, test_23.txt, test_24.txt, test_25.txt, test_26.txt, test_27.txt, test_28.txt, test_29.txt, test_30.txt, test_31.txt, test_32.txt, test_33.txt, test_34.txt, test_35.txt, test_36.txt, test_37.txt, test_38.txt, test_39.txt, test_40.txt, test_41.txt, test_42.txt, test_43.txt
Case Name Status Exec Time Memory
00_sample_01.txt AC 357 ms 22972 KB
00_sample_02.txt AC 361 ms 22836 KB
00_sample_03.txt AC 358 ms 22944 KB
cho_cho_chokudai.txt TLE 2043 ms 42108 KB
chokudai_ga_cho.txt TLE 2044 ms 42036 KB
test_01.txt AC 405 ms 23292 KB
test_02.txt AC 404 ms 23384 KB
test_03.txt AC 408 ms 23340 KB
test_04.txt AC 406 ms 23452 KB
test_05.txt AC 402 ms 23376 KB
test_06.txt AC 388 ms 23796 KB
test_07.txt AC 377 ms 22960 KB
test_08.txt AC 370 ms 22944 KB
test_09.txt AC 438 ms 25296 KB
test_10.txt AC 442 ms 25180 KB
test_11.txt AC 431 ms 23968 KB
test_12.txt AC 411 ms 23476 KB
test_13.txt AC 385 ms 23276 KB
test_14.txt AC 445 ms 25072 KB
test_15.txt AC 441 ms 25068 KB
test_16.txt AC 388 ms 23236 KB
test_17.txt AC 442 ms 25748 KB
test_18.txt AC 386 ms 23172 KB
test_19.txt AC 408 ms 23476 KB
test_20.txt AC 419 ms 23852 KB
test_21.txt TLE 2043 ms 42780 KB
test_22.txt TLE 2042 ms 42212 KB
test_23.txt TLE 2045 ms 42556 KB
test_24.txt TLE 2042 ms 42656 KB
test_25.txt TLE 2042 ms 43084 KB
test_26.txt TLE 2045 ms 42140 KB
test_27.txt TLE 2045 ms 42892 KB
test_28.txt TLE 2043 ms 43180 KB
test_29.txt AC 361 ms 22960 KB
test_30.txt AC 360 ms 22932 KB
test_31.txt AC 679 ms 30808 KB
test_32.txt AC 362 ms 22996 KB
test_33.txt TLE 2044 ms 41448 KB
test_34.txt AC 359 ms 22888 KB
test_35.txt AC 394 ms 23372 KB
test_36.txt TLE 2045 ms 43240 KB
test_37.txt TLE 2043 ms 43380 KB
test_38.txt TLE 2045 ms 42748 KB
test_39.txt TLE 2044 ms 42412 KB
test_40.txt TLE 2044 ms 42384 KB
test_41.txt TLE 2044 ms 41596 KB
test_42.txt TLE 2044 ms 42624 KB
test_43.txt TLE 2044 ms 40540 KB