結果

問題 No.543 命題
ユーザー FVRChanFVRChan
提出日時 2017-10-03 09:41:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 156 ms / 2,000 ms
コード長 233 bytes
コンパイル時間 2,054 ms
コンパイル使用メモリ 76,216 KB
実行使用メモリ 55,308 KB
最終ジャッジ日時 2024-04-27 22:34:57
合計ジャッジ時間 3,294 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 156 ms
54,780 KB
testcase_01 AC 154 ms
54,984 KB
testcase_02 AC 137 ms
54,680 KB
testcase_03 AC 154 ms
55,308 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class Main{
	private static Scanner sc=new Scanner(System.in);
	public static void main(String args[])throws Exception{
		String s[]=sc.nextLine().split(" ");
		System.out.println(s[1]+" "+s[0]);
	}
}
0