Submission #1606476


Source Code Expand

import java.util.Scanner;

public class Main{
  public static void main(String[] args){
    Scanner sc = new Scanner(System.in);
    String str = sc.nextLine();
    String str1 = str.substring(0,5);
    String str2 = str.substring(6,13);
    String str3 = str.substring(14,19);
    System.out.println(str1+' '+str2+' '+str3);
  }
}

Submission Info

Submission Time
Task A - Haiku
User BLOND
Language Java8 (OpenJDK 1.8.0)
Score 100
Code Size 342 Byte
Status AC
Exec Time 100 ms
Memory 21844 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 100 / 100
Status
AC × 3
AC × 10
Set Name Test Cases
Sample sample_01.txt, sample_02.txt, sample_03.txt
All sample_01.txt, sample_02.txt, sample_03.txt, subtask_1_01.txt, subtask_1_02.txt, subtask_1_03.txt, subtask_1_04.txt, subtask_1_05.txt, subtask_1_06.txt, subtask_1_07.txt
Case Name Status Exec Time Memory
sample_01.txt AC 99 ms 20688 KB
sample_02.txt AC 91 ms 21204 KB
sample_03.txt AC 89 ms 18644 KB
subtask_1_01.txt AC 100 ms 21460 KB
subtask_1_02.txt AC 99 ms 21844 KB
subtask_1_03.txt AC 89 ms 18644 KB
subtask_1_04.txt AC 90 ms 19924 KB
subtask_1_05.txt AC 90 ms 19540 KB
subtask_1_06.txt AC 92 ms 21716 KB
subtask_1_07.txt AC 90 ms 21204 KB