結果

問題 No.591 (^o^)/
ユーザー FfalconokeFfalconoke
提出日時 2017-12-09 11:55:27
言語 Java
(openjdk 23)
結果
AC  
実行時間 119 ms / 2,000 ms
コード長 361 bytes
コンパイル時間 3,348 ms
コンパイル使用メモリ 74,448 KB
実行使用メモリ 41,288 KB
最終ジャッジ日時 2024-11-30 02:16:51
合計ジャッジ時間 5,171 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
40,796 KB
testcase_01 AC 117 ms
40,928 KB
testcase_02 AC 115 ms
40,724 KB
testcase_03 AC 102 ms
41,144 KB
testcase_04 AC 106 ms
40,956 KB
testcase_05 AC 102 ms
40,928 KB
testcase_06 AC 104 ms
41,288 KB
testcase_07 AC 111 ms
41,096 KB
testcase_08 AC 108 ms
40,076 KB
testcase_09 AC 116 ms
40,904 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