結果

問題 No.591 (^o^)/
ユーザー FfalconokeFfalconoke
提出日時 2017-12-09 11:55:27
言語 Java21
(openjdk 21)
結果
AC  
実行時間 111 ms / 2,000 ms
コード長 361 bytes
コンパイル時間 3,284 ms
コンパイル使用メモリ 72,260 KB
実行使用メモリ 56,312 KB
最終ジャッジ日時 2023-08-20 02:53:57
合計ジャッジ時間 4,508 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
56,312 KB
testcase_01 AC 108 ms
55,804 KB
testcase_02 AC 106 ms
55,588 KB
testcase_03 AC 99 ms
55,316 KB
testcase_04 AC 98 ms
56,184 KB
testcase_05 AC 98 ms
55,560 KB
testcase_06 AC 97 ms
55,832 KB
testcase_07 AC 99 ms
55,932 KB
testcase_08 AC 107 ms
55,900 KB
testcase_09 AC 111 ms
56,108 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