Submission #891416


Source Code Expand

import java.util.*;

public class Main {

	public static void main(String[] args){
    		Scanner in = new Scanner(System.in);
    		
    		String[] s = in.next().split("");
    		String answer = "";
    		for (int x = 0; x < 4; x++){
    			answer += s[x];
    		}
    		answer += " ";
    		for (int x = 4; x < s.length; x++){
    			answer += s[x];
    		}
    		System.out.println(answer);
    		in.close();
    }
}

Submission Info

Submission Time
Task A - CODEFESTIVAL 2016
User dchacon
Language Java7 (OpenJDK 1.7.0)
Score 0
Code Size 437 Byte
Status WA
Exec Time 123 ms
Memory 9044 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 0 / 100
Status
WA × 3
WA × 6
Set Name Test Cases
Sample 0_00.txt, 0_01.txt, 0_02.txt
All 0_00.txt, 0_01.txt, 0_02.txt, 1_00.txt, 1_01.txt, 1_02.txt
Case Name Status Exec Time Memory
0_00.txt WA 123 ms 9044 KB
0_01.txt WA 117 ms 8916 KB
0_02.txt WA 117 ms 8916 KB
1_00.txt WA 117 ms 8916 KB
1_01.txt WA 116 ms 8912 KB
1_02.txt WA 120 ms 8916 KB