結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 173 ms
42,432 KB
testcase_01 AC 167 ms
42,216 KB
testcase_02 AC 166 ms
42,592 KB
testcase_03 AC 174 ms
42,280 KB
testcase_04 AC 170 ms
42,532 KB
testcase_05 AC 170 ms
42,308 KB
testcase_06 AC 152 ms
42,452 KB
testcase_07 AC 169 ms
42,456 KB
testcase_08 AC 154 ms
42,212 KB
testcase_09 AC 167 ms
42,384 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