結果

問題 No.591 (^o^)/
ユーザー uwiuwi
提出日時 2017-11-10 22:37:17
言語 Java21
(openjdk 21)
結果
AC  
実行時間 109 ms / 2,000 ms
コード長 794 bytes
コンパイル時間 3,680 ms
コンパイル使用メモリ 75,300 KB
実行使用メモリ 41,532 KB
最終ジャッジ日時 2024-05-03 15:12:30
合計ジャッジ時間 4,616 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
40,996 KB
testcase_01 AC 106 ms
41,524 KB
testcase_02 AC 104 ms
40,580 KB
testcase_03 AC 107 ms
41,012 KB
testcase_04 AC 101 ms
40,776 KB
testcase_05 AC 108 ms
40,836 KB
testcase_06 AC 106 ms
41,108 KB
testcase_07 AC 102 ms
41,532 KB
testcase_08 AC 107 ms
41,180 KB
testcase_09 AC 108 ms
41,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package contest171110;
import java.io.PrintWriter;
import java.util.Arrays;
import java.util.Scanner;

public class A2 {
	static Scanner in;
	static PrintWriter out;
	static String INPUT = "";
	
	static void solve()
	{
		String x = in.nextLine();
		String y = in.nextLine();
		out.printf("(%s%s%s)/", x, y, x);
	}
	
	public static void main(String[] args) throws Exception
	{
		in = INPUT.isEmpty() ? new Scanner(System.in) : new Scanner(INPUT);
		out = new PrintWriter(System.out);
		
		solve();
		out.flush();
	}
	
	static int ni() { return Integer.parseInt(in.next()); }
	static long nl() { return Long.parseLong(in.next()); }
	static double nd() { return Double.parseDouble(in.next()); }
	static void tr(Object... o) { if(INPUT.length() != 0)System.out.println(Arrays.deepToString(o)); }
}
0