Submission #1675691


Source Code Expand

import java.util.Scanner;
import java.util.InputMismatchException;


public class Main
{
  public static void main(String args[]){
     Solve ans=new Solve();
       Scanner scanner = new Scanner(System.in);
       ans.x=scanner.nextInt();
       ans.y=scanner.nextInt();
     ans.show();

  }
}
class Solve{
  public static int x,y;
  void show(){
    System.out.print(y);
    System.out.print(" ");
    System.out.println(x);
  }
}

Submission Info

Submission Time
Task A - スワップ
User yebityon
Language Java7 (OpenJDK 1.7.0)
Score 100
Code Size 457 Byte
Status AC
Exec Time 96 ms
Memory 20820 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 94 ms 20820 KB
sample_02.txt AC 94 ms 20820 KB
test_13_69.txt AC 94 ms 20820 KB
test_16_44.txt AC 94 ms 20820 KB
test_40_40.txt AC 94 ms 18772 KB
test_49_31.txt AC 96 ms 20820 KB
test_51_74.txt AC 94 ms 18772 KB
test_83_60.txt AC 94 ms 18900 KB