結果

問題 No.591 (^o^)/
ユーザー aikon_marimoaikon_marimo
提出日時 2018-01-30 23:48:44
言語 Java21
(openjdk 21)
結果
AC  
実行時間 157 ms / 2,000 ms
コード長 264 bytes
コンパイル時間 2,196 ms
コンパイル使用メモリ 75,756 KB
実行使用メモリ 42,660 KB
最終ジャッジ日時 2024-06-09 11:54:09
合計ジャッジ時間 4,295 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 151 ms
42,660 KB
testcase_01 AC 152 ms
42,472 KB
testcase_02 AC 142 ms
42,032 KB
testcase_03 AC 156 ms
42,380 KB
testcase_04 AC 155 ms
42,400 KB
testcase_05 AC 153 ms
42,276 KB
testcase_06 AC 156 ms
42,396 KB
testcase_07 AC 157 ms
42,388 KB
testcase_08 AC 144 ms
42,256 KB
testcase_09 AC 156 ms
42,304 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