結果

問題 No.591 (^o^)/
ユーザー yamax3232yamax3232
提出日時 2018-03-14 11:15:38
言語 Java
(openjdk 23)
結果
AC  
実行時間 156 ms / 2,000 ms
コード長 315 bytes
コンパイル時間 5,332 ms
コンパイル使用メモリ 83,560 KB
実行使用メモリ 55,136 KB
最終ジャッジ日時 2024-11-27 06:03:03
合計ジャッジ時間 4,302 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 152 ms
54,980 KB
testcase_01 AC 145 ms
54,844 KB
testcase_02 AC 130 ms
54,744 KB
testcase_03 AC 156 ms
55,016 KB
testcase_04 AC 152 ms
54,828 KB
testcase_05 AC 154 ms
54,800 KB
testcase_06 AC 135 ms
55,044 KB
testcase_07 AC 147 ms
55,080 KB
testcase_08 AC 154 ms
55,136 KB
testcase_09 AC 154 ms
54,692 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main{

	public static void main(String[] args) {
		// TODO 自動生成されたメソッド・スタブ
		Scanner kb=new Scanner(System.in);
		String[] a=new String[2];
		for(int i=0;i<2;i++){
		a[i]=kb.nextLine();
		}

		System.out.println("("+a[0]+a[1]+a[0]+")/");

	}

}
0