Submission #1588065


Source Code Expand

import java.io.BufferedReader;
import java.io.InputStreamReader;

public class Main{
	public static void main(String[] args) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		String str = br.readLine();
		String[] array = str.split(" ");

		int x = Integer.parseInt(array[0]);
		int y = Integer.parseInt(array[1]);

		System.out.println(y + " " + x);
	}

}

Submission Info

Submission Time
Task A - スワップ
User unirita145
Language Java8 (OpenJDK 1.8.0)
Score 100
Code Size 420 Byte
Status AC
Exec Time 76 ms
Memory 22612 KB

Judge Result

Set Name All
Score / Max Score 100 / 100
Status
AC × 8
Set Name Test Cases
All sample_01.txt, sample_02.txt, test_13_69.txt, test_16_44.txt, test_40_40.txt, test_49_31.txt, test_51_74.txt, test_83_60.txt
Case Name Status Exec Time Memory
sample_01.txt AC 76 ms 22612 KB
sample_02.txt AC 67 ms 15700 KB
test_13_69.txt AC 67 ms 19284 KB
test_16_44.txt AC 67 ms 20308 KB
test_40_40.txt AC 68 ms 19028 KB
test_49_31.txt AC 74 ms 17620 KB
test_51_74.txt AC 67 ms 17748 KB
test_83_60.txt AC 66 ms 19284 KB