結果

問題 No.591 (^o^)/
ユーザー jimanojimano
提出日時 2018-01-24 20:44:35
言語 Java
(openjdk 23)
結果
AC  
実行時間 94 ms / 2,000 ms
コード長 456 bytes
コンパイル時間 3,285 ms
コンパイル使用メモリ 79,748 KB
実行使用メモリ 40,064 KB
最終ジャッジ日時 2024-12-26 07:54:29
合計ジャッジ時間 4,841 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 94 ms
39,788 KB
testcase_01 AC 86 ms
37,896 KB
testcase_02 AC 90 ms
39,724 KB
testcase_03 AC 93 ms
39,976 KB
testcase_04 AC 90 ms
40,024 KB
testcase_05 AC 86 ms
38,364 KB
testcase_06 AC 89 ms
40,064 KB
testcase_07 AC 92 ms
39,848 KB
testcase_08 AC 82 ms
38,016 KB
testcase_09 AC 85 ms
38,328 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package me.yukicoder.lv1;

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class No0591 {
	public static void main(String[] args) {
		try (BufferedReader br = new BufferedReader(new InputStreamReader(System.in))) {
			String input = br.readLine();
			String input2 = br.readLine();

			System.out.println("(" + input + input2 + input + ")/");
		} catch (IOException e) {
			e.printStackTrace();
		}
	}
}
0