結果

問題 No.543 命題
ユーザー shinwisteriashinwisteria
提出日時 2018-02-16 22:01:37
言語 Java21
(openjdk 21)
結果
AC  
実行時間 158 ms / 2,000 ms
コード長 273 bytes
コンパイル時間 4,720 ms
コンパイル使用メモリ 73,232 KB
実行使用メモリ 57,172 KB
最終ジャッジ日時 2023-09-05 04:19:11
合計ジャッジ時間 6,156 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 158 ms
57,048 KB
testcase_01 AC 155 ms
57,172 KB
testcase_02 AC 155 ms
56,980 KB
testcase_03 AC 157 ms
56,932 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