結果

問題 No.591 (^o^)/
ユーザー GodNegotoGodNegoto
提出日時 2019-11-28 16:35:07
言語 Java21
(openjdk 21)
結果
AC  
実行時間 166 ms / 2,000 ms
コード長 232 bytes
コンパイル時間 3,429 ms
コンパイル使用メモリ 79,104 KB
実行使用メモリ 56,784 KB
最終ジャッジ日時 2024-11-18 10:28:02
合計ジャッジ時間 5,817 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 166 ms
54,824 KB
testcase_01 AC 161 ms
55,060 KB
testcase_02 AC 161 ms
55,036 KB
testcase_03 AC 160 ms
55,016 KB
testcase_04 AC 159 ms
54,880 KB
testcase_05 AC 166 ms
54,940 KB
testcase_06 AC 163 ms
55,120 KB
testcase_07 AC 155 ms
56,784 KB
testcase_08 AC 158 ms
54,884 KB
testcase_09 AC 160 ms
54,844 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package algo;

import java.util.*;

public class sample7 {

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