結果

問題 No.591 (^o^)/
ユーザー matsuyoshi30matsuyoshi30
提出日時 2018-04-25 23:37:16
言語 Java21
(openjdk 21)
結果
AC  
実行時間 163 ms / 2,000 ms
コード長 249 bytes
コンパイル時間 2,197 ms
コンパイル使用メモリ 76,352 KB
実行使用メモリ 54,912 KB
最終ジャッジ日時 2024-06-27 21:06:47
合計ジャッジ時間 4,372 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 156 ms
54,620 KB
testcase_01 AC 163 ms
54,872 KB
testcase_02 AC 159 ms
54,864 KB
testcase_03 AC 161 ms
54,912 KB
testcase_04 AC 158 ms
54,896 KB
testcase_05 AC 156 ms
54,888 KB
testcase_06 AC 162 ms
54,832 KB
testcase_07 AC 159 ms
54,844 KB
testcase_08 AC 157 ms
54,744 KB
testcase_09 AC 141 ms
54,576 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Main {
    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        String t1 = in.next();
        String t2 = in.next();

        System.out.println("(" + t1 + t2 + t1 + ")/");
    }
}
0