結果

問題 No.591 (^o^)/
ユーザー YukimotoPGYukimotoPG
提出日時 2019-02-13 15:17:17
言語 Java21
(openjdk 21)
結果
AC  
実行時間 164 ms / 2,000 ms
コード長 222 bytes
コンパイル時間 2,213 ms
コンパイル使用メモリ 76,364 KB
実行使用メモリ 55,056 KB
最終ジャッジ日時 2024-09-13 10:01:59
合計ジャッジ時間 4,486 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 157 ms
54,944 KB
testcase_01 AC 164 ms
54,984 KB
testcase_02 AC 160 ms
54,840 KB
testcase_03 AC 144 ms
54,624 KB
testcase_04 AC 161 ms
54,764 KB
testcase_05 AC 162 ms
54,996 KB
testcase_06 AC 161 ms
55,056 KB
testcase_07 AC 160 ms
54,920 KB
testcase_08 AC 161 ms
54,984 KB
testcase_09 AC 159 ms
54,988 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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