結果

問題 No.543 命題
ユーザー FVRChanFVRChan
提出日時 2017-10-03 09:41:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 160 ms / 2,000 ms
コード長 233 bytes
コンパイル時間 2,152 ms
コンパイル使用メモリ 76,304 KB
実行使用メモリ 56,748 KB
最終ジャッジ日時 2024-11-16 05:26:41
合計ジャッジ時間 3,462 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 158 ms
54,748 KB
testcase_01 AC 157 ms
56,748 KB
testcase_02 AC 160 ms
54,656 KB
testcase_03 AC 157 ms
54,704 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