結果

問題 No.591 (^o^)/
ユーザー jimanojimano
提出日時 2018-01-24 20:44:35
言語 Java21
(openjdk 21)
結果
AC  
実行時間 92 ms / 2,000 ms
コード長 456 bytes
コンパイル時間 3,115 ms
コンパイル使用メモリ 79,196 KB
実行使用メモリ 40,476 KB
最終ジャッジ日時 2024-06-07 21:57:05
合計ジャッジ時間 4,585 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 80 ms
38,364 KB
testcase_01 AC 80 ms
40,476 KB
testcase_02 AC 86 ms
40,360 KB
testcase_03 AC 83 ms
40,204 KB
testcase_04 AC 83 ms
39,816 KB
testcase_05 AC 83 ms
38,552 KB
testcase_06 AC 84 ms
38,516 KB
testcase_07 AC 84 ms
40,348 KB
testcase_08 AC 84 ms
40,188 KB
testcase_09 AC 92 ms
39,876 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