結果

問題 No.591 (^o^)/
ユーザー yamax3232yamax3232
提出日時 2018-03-14 11:15:38
言語 Java21
(openjdk 21)
結果
AC  
実行時間 164 ms / 2,000 ms
コード長 315 bytes
コンパイル時間 4,916 ms
コンパイル使用メモリ 81,548 KB
実行使用メモリ 57,268 KB
最終ジャッジ日時 2023-08-18 03:34:17
合計ジャッジ時間 7,277 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 154 ms
56,776 KB
testcase_01 AC 164 ms
56,988 KB
testcase_02 AC 156 ms
56,736 KB
testcase_03 AC 160 ms
56,948 KB
testcase_04 AC 159 ms
57,040 KB
testcase_05 AC 156 ms
56,996 KB
testcase_06 AC 157 ms
57,268 KB
testcase_07 AC 154 ms
57,068 KB
testcase_08 AC 155 ms
56,968 KB
testcase_09 AC 155 ms
56,992 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