結果

問題 No.591 (^o^)/
ユーザー matsuyoshi30matsuyoshi30
提出日時 2018-04-25 23:37:16
言語 Java21
(openjdk 21)
結果
AC  
実行時間 166 ms / 2,000 ms
コード長 249 bytes
コンパイル時間 2,245 ms
コンパイル使用メモリ 72,376 KB
実行使用メモリ 57,248 KB
最終ジャッジ日時 2023-09-10 05:32:12
合計ジャッジ時間 5,424 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 163 ms
56,980 KB
testcase_01 AC 163 ms
57,052 KB
testcase_02 AC 163 ms
56,980 KB
testcase_03 AC 164 ms
56,740 KB
testcase_04 AC 164 ms
57,248 KB
testcase_05 AC 166 ms
56,980 KB
testcase_06 AC 162 ms
56,984 KB
testcase_07 AC 163 ms
56,788 KB
testcase_08 AC 162 ms
57,096 KB
testcase_09 AC 161 ms
57,236 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