結果

問題 No.543 命題
ユーザー shinwisteriashinwisteria
提出日時 2018-02-16 22:01:37
言語 Java21
(openjdk 21)
結果
AC  
実行時間 158 ms / 2,000 ms
コード長 273 bytes
コンパイル時間 3,708 ms
コンパイル使用メモリ 75,868 KB
実行使用メモリ 54,960 KB
最終ジャッジ日時 2024-06-23 00:57:30
合計ジャッジ時間 4,983 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 153 ms
54,960 KB
testcase_01 AC 153 ms
54,704 KB
testcase_02 AC 151 ms
54,760 KB
testcase_03 AC 158 ms
54,540 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package m.shin;
import java.util.Scanner;
public class Con543 {

	public static void main(String[] args) {
		Scanner s = new Scanner(System.in);
		String[] P = new String[2];
		P[1] = s.next();
		P[0] = s.next();
		s.close();
		System.out.println(P[0] + " " + P[1]);
	}

}
0