結果

問題 No.591 (^o^)/
ユーザー Mcpu3Mcpu3
提出日時 2018-04-14 18:48:50
言語 Java19
(openjdk 21)
結果
AC  
実行時間 157 ms / 2,000 ms
コード長 224 bytes
コンパイル時間 2,254 ms
コンパイル使用メモリ 72,908 KB
実行使用メモリ 57,236 KB
最終ジャッジ日時 2023-09-09 05:25:41
合計ジャッジ時間 4,390 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 156 ms
57,232 KB
testcase_01 AC 155 ms
56,976 KB
testcase_02 AC 156 ms
56,968 KB
testcase_03 AC 156 ms
57,020 KB
testcase_04 AC 157 ms
57,236 KB
testcase_05 AC 156 ms
56,812 KB
testcase_06 AC 155 ms
57,028 KB
testcase_07 AC 157 ms
56,756 KB
testcase_08 AC 155 ms
57,232 KB
testcase_09 AC 156 ms
57,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class no591{
	public static void main(String[] args) {
		Scanner stdIn=new Scanner(System.in);
		String a,b;
		a=stdIn.next();
		b=stdIn.next();
		System.out.println("("+a+b+a+")/");
	}
}
0