Submission #335391


Source Code Expand

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] += 40;
	}

	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[i] < end[k]){
						end[i] = end[k];
					} else {
						end[k] = end[i];
					}
				}

			}
		}
	}

	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 1918 Byte
Status TLE
Exec Time 2046 ms
Memory 43904 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 364 ms 22868 KB
00_sample_02.txt AC 359 ms 22852 KB
00_sample_03.txt AC 362 ms 22836 KB
cho_cho_chokudai.txt TLE 2044 ms 42608 KB
chokudai_ga_cho.txt TLE 2045 ms 43904 KB
test_01.txt AC 403 ms 23464 KB
test_02.txt AC 401 ms 23368 KB
test_03.txt AC 399 ms 23400 KB
test_04.txt AC 401 ms 23268 KB
test_05.txt AC 411 ms 23348 KB
test_06.txt AC 394 ms 23916 KB
test_07.txt AC 374 ms 23020 KB
test_08.txt AC 367 ms 22968 KB
test_09.txt AC 438 ms 25836 KB
test_10.txt AC 446 ms 25128 KB
test_11.txt AC 421 ms 23896 KB
test_12.txt AC 411 ms 23552 KB
test_13.txt AC 374 ms 23240 KB
test_14.txt AC 432 ms 25836 KB
test_15.txt AC 432 ms 25192 KB
test_16.txt AC 373 ms 23276 KB
test_17.txt AC 424 ms 25144 KB
test_18.txt AC 378 ms 23256 KB
test_19.txt AC 400 ms 23556 KB
test_20.txt AC 412 ms 24036 KB
test_21.txt TLE 2045 ms 43152 KB
test_22.txt TLE 2044 ms 43452 KB
test_23.txt TLE 2042 ms 42512 KB
test_24.txt TLE 2045 ms 42692 KB
test_25.txt TLE 2046 ms 42012 KB
test_26.txt TLE 2043 ms 42380 KB
test_27.txt TLE 2044 ms 43608 KB
test_28.txt TLE 2043 ms 42396 KB
test_29.txt AC 357 ms 22864 KB
test_30.txt AC 372 ms 23004 KB
test_31.txt AC 696 ms 30360 KB
test_32.txt AC 358 ms 22876 KB
test_33.txt TLE 2043 ms 40512 KB
test_34.txt AC 353 ms 22884 KB
test_35.txt AC 394 ms 23656 KB
test_36.txt TLE 2044 ms 42908 KB
test_37.txt TLE 2045 ms 42364 KB
test_38.txt TLE 2045 ms 42324 KB
test_39.txt TLE 2044 ms 42568 KB
test_40.txt TLE 2045 ms 42368 KB
test_41.txt TLE 2044 ms 42268 KB
test_42.txt TLE 2045 ms 43068 KB
test_43.txt TLE 2044 ms 40476 KB