結果

問題 No.591 (^o^)/
ユーザー GodNegotoGodNegoto
提出日時 2019-11-28 16:35:07
言語 Java21
(openjdk 21)
結果
AC  
実行時間 163 ms / 2,000 ms
コード長 232 bytes
コンパイル時間 3,458 ms
コンパイル使用メモリ 76,068 KB
実行使用メモリ 42,428 KB
最終ジャッジ日時 2024-04-29 08:34:55
合計ジャッジ時間 5,834 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 141 ms
42,296 KB
testcase_01 AC 157 ms
42,408 KB
testcase_02 AC 144 ms
41,908 KB
testcase_03 AC 160 ms
42,428 KB
testcase_04 AC 160 ms
42,132 KB
testcase_05 AC 162 ms
42,304 KB
testcase_06 AC 159 ms
42,260 KB
testcase_07 AC 163 ms
42,316 KB
testcase_08 AC 145 ms
42,296 KB
testcase_09 AC 162 ms
42,260 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