結果

問題 No.591 (^o^)/
ユーザー fabled2468fabled2468
提出日時 2018-09-29 08:43:23
言語 Java21
(openjdk 21)
結果
AC  
実行時間 164 ms / 2,000 ms
コード長 329 bytes
コンパイル時間 3,597 ms
コンパイル使用メモリ 76,904 KB
実行使用メモリ 55,040 KB
最終ジャッジ日時 2024-10-12 08:08:29
合計ジャッジ時間 5,718 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 161 ms
55,000 KB
testcase_01 AC 162 ms
54,708 KB
testcase_02 AC 163 ms
54,536 KB
testcase_03 AC 160 ms
55,040 KB
testcase_04 AC 158 ms
54,736 KB
testcase_05 AC 144 ms
54,648 KB
testcase_06 AC 163 ms
54,852 KB
testcase_07 AC 164 ms
54,904 KB
testcase_08 AC 162 ms
54,852 KB
testcase_09 AC 147 ms
54,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No591_FaceString {
    public static void main(String[] args) {

        Scanner scan = new Scanner(System.in);
        String value1 = scan.next();
        String value2 = scan.next();
        scan.close();

        System.out.println("(" + value1 + value2 + value1 + ")" + "/");
    }
}
0