結果

問題 No.591 (^o^)/
ユーザー yamax3232yamax3232
提出日時 2018-03-14 11:15:38
言語 Java21
(openjdk 21)
結果
AC  
実行時間 168 ms / 2,000 ms
コード長 315 bytes
コンパイル時間 4,880 ms
コンパイル使用メモリ 75,716 KB
実行使用メモリ 55,180 KB
最終ジャッジ日時 2024-05-05 10:04:46
合計ジャッジ時間 4,619 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 166 ms
55,128 KB
testcase_01 AC 165 ms
55,080 KB
testcase_02 AC 163 ms
55,124 KB
testcase_03 AC 163 ms
54,848 KB
testcase_04 AC 163 ms
55,012 KB
testcase_05 AC 167 ms
55,036 KB
testcase_06 AC 168 ms
55,064 KB
testcase_07 AC 167 ms
55,180 KB
testcase_08 AC 165 ms
55,180 KB
testcase_09 AC 167 ms
55,084 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