結果

問題 No.591 (^o^)/
ユーザー Mcpu3Mcpu3
提出日時 2018-04-14 18:48:50
言語 Java21
(openjdk 21)
結果
AC  
実行時間 166 ms / 2,000 ms
コード長 224 bytes
コンパイル時間 2,205 ms
コンパイル使用メモリ 75,916 KB
実行使用メモリ 55,180 KB
最終ジャッジ日時 2024-06-26 22:32:55
合計ジャッジ時間 4,523 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 166 ms
54,972 KB
testcase_01 AC 165 ms
54,820 KB
testcase_02 AC 161 ms
54,788 KB
testcase_03 AC 162 ms
55,052 KB
testcase_04 AC 166 ms
55,180 KB
testcase_05 AC 164 ms
55,032 KB
testcase_06 AC 159 ms
54,796 KB
testcase_07 AC 163 ms
54,976 KB
testcase_08 AC 146 ms
54,736 KB
testcase_09 AC 164 ms
55,012 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