結果

問題 No.591 (^o^)/
ユーザー aikon_marimoaikon_marimo
提出日時 2018-01-30 23:48:44
言語 Java21
(openjdk 21)
結果
AC  
実行時間 153 ms / 2,000 ms
コード長 264 bytes
コンパイル時間 2,030 ms
コンパイル使用メモリ 72,392 KB
実行使用メモリ 58,876 KB
最終ジャッジ日時 2023-08-28 16:43:24
合計ジャッジ時間 4,538 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 152 ms
58,876 KB
testcase_01 AC 150 ms
57,060 KB
testcase_02 AC 150 ms
57,052 KB
testcase_03 AC 152 ms
56,996 KB
testcase_04 AC 152 ms
56,832 KB
testcase_05 AC 152 ms
56,876 KB
testcase_06 AC 153 ms
56,780 KB
testcase_07 AC 152 ms
57,140 KB
testcase_08 AC 153 ms
55,064 KB
testcase_09 AC 153 ms
57,004 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder.No591;

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner in = new Scanner(System.in);
		
		String T1 = in.next();
		String T2 = in.next();
		
		System.out.println("(" + T1 + T2 + T1 + ")/");
	}
}
0