結果

問題 No.591 (^o^)/
ユーザー FfalconokeFfalconoke
提出日時 2017-12-09 11:55:27
言語 Java21
(openjdk 21)
結果
AC  
実行時間 140 ms / 2,000 ms
コード長 361 bytes
コンパイル時間 3,631 ms
コンパイル使用メモリ 74,764 KB
実行使用メモリ 54,136 KB
最終ジャッジ日時 2024-05-07 10:27:50
合計ジャッジ時間 5,719 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
53,936 KB
testcase_01 AC 137 ms
54,020 KB
testcase_02 AC 134 ms
54,068 KB
testcase_03 AC 135 ms
54,100 KB
testcase_04 AC 137 ms
54,136 KB
testcase_05 AC 140 ms
54,004 KB
testcase_06 AC 139 ms
53,888 KB
testcase_07 AC 137 ms
54,048 KB
testcase_08 AC 135 ms
53,888 KB
testcase_09 AC 135 ms
53,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class slove{
	public static void main(String[] args){
		Scanner stdIn = new Scanner(System.in);
		String T1 = stdIn.next();
		String T2 = stdIn.next();
		StringBuffer sb = new StringBuffer();
		sb.append('(').append(T1).append(T2).append(T1).append(')').append('/');
		String out = sb.toString();
		System.out.println(out);
	}
}
0