結果

問題 No.591 (^o^)/
ユーザー jimanojimano
提出日時 2018-01-24 20:44:35
言語 Java21
(openjdk 21)
結果
AC  
実行時間 92 ms / 2,000 ms
コード長 456 bytes
コンパイル時間 3,618 ms
コンパイル使用メモリ 72,128 KB
実行使用メモリ 54,116 KB
最終ジャッジ日時 2023-08-27 02:17:41
合計ジャッジ時間 4,638 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 80 ms
52,724 KB
testcase_01 AC 79 ms
52,820 KB
testcase_02 AC 80 ms
53,216 KB
testcase_03 AC 79 ms
53,180 KB
testcase_04 AC 78 ms
53,892 KB
testcase_05 AC 83 ms
54,116 KB
testcase_06 AC 81 ms
53,664 KB
testcase_07 AC 92 ms
53,880 KB
testcase_08 AC 81 ms
53,416 KB
testcase_09 AC 81 ms
53,580 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