提出 #890857


ソースコード 拡げる

import java.util.ArrayList;
import java.util.Collections;
import java.util.Comparator;
import java.util.HashMap;
import java.util.Scanner;
import java.io.File;
import java.io.FileNotFoundException;
 
public class Main {
	static Scanner in;
	static char s[];
	public static void main(String[] args) throws FileNotFoundException {
//		in = new Scanner(new File("input.txt"));
		in = new Scanner(System.in);
		s = in.next().toCharArray();
		for(int i = 0;i < s.length;i++){
			if(i == 4) System.out.print(" ");
			System.out.print(s[i]);
		}
		System.out.println();
	}
}

提出情報

提出日時
問題 A - CODEFESTIVAL 2016
ユーザ pvtuan10
言語 Java8 (OpenJDK 1.8.0)
得点 100
コード長 588 Byte
結果 AC
実行時間 136 ms
メモリ 10188 KiB

ジャッジ結果

セット名 Sample All
得点 / 配点 0 / 0 100 / 100
結果
AC × 3
AC × 6
セット名 テストケース
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
ケース名 結果 実行時間 メモリ
0_00.txt AC 136 ms 10188 KiB
0_01.txt AC 126 ms 9552 KiB
0_02.txt AC 124 ms 9556 KiB
1_00.txt AC 122 ms 9684 KiB
1_01.txt AC 123 ms 9552 KiB
1_02.txt AC 123 ms 9552 KiB