Submission #3208071


Source Code Expand

import java.io.IOException;

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

public class Main {
    public static void main(String[] args) throws IOException {
        try (
            BufferedReader reader = new BufferedReader(
                new InputStreamReader(System.in))) {
            final String s = reader.readLine();

            final String[] sl = s.split(" ");
            int A = Integer.parseInt(sl[0]);
            int B = Integer.parseInt(sl[1]);

            System.out.println(String.format("%d %d", B, A));
        }
    }
}

Submission Info

Submission Time
Task A - スワップ
User ShinjiSHIBATA
Language Java8 (OpenJDK 1.8.0)
Score 100
Code Size 588 Byte
Status AC
Exec Time 75 ms
Memory 21204 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 75 ms 19028 KB
sample_02.txt AC 74 ms 20564 KB
test_13_69.txt AC 75 ms 20564 KB
test_16_44.txt AC 74 ms 20436 KB
test_40_40.txt AC 73 ms 19924 KB
test_49_31.txt AC 75 ms 20692 KB
test_51_74.txt AC 74 ms 21204 KB
test_83_60.txt AC 74 ms 18260 KB