Submission #891787


Source Code Expand

import java.util.Scanner;

public class Main {
    public static void main(String [] args) {
    	Scanner sc = new Scanner(System.in);
    	String s = sc.nextLine();
    	StringBuilder sb = new StringBuilder();
    	for (int i = 0; i < s.length(); i++) {
    		sb.append(s.charAt(i));
    		if (i == 3 || i == 11) {
    			sb.append(" ");
    		}
    	}
    	System.out.println(sb.toString());
    }
}

Submission Info

Submission Time
Task A - CODEFESTIVAL 2016
User chenyi53
Language Java8 (OpenJDK 1.8.0)
Score 0
Code Size 418 Byte
Status WA
Exec Time 125 ms
Memory 9680 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 9556 KB
0_01.txt WA 122 ms 9552 KB
0_02.txt WA 123 ms 9680 KB
1_00.txt WA 125 ms 9548 KB
1_01.txt WA 124 ms 9556 KB
1_02.txt WA 123 ms 9552 KB