結果

問題 No.591 (^o^)/
ユーザー fabled2468fabled2468
提出日時 2018-09-29 08:43:23
言語 Java21
(openjdk 21)
結果
AC  
実行時間 174 ms / 2,000 ms
コード長 329 bytes
コンパイル時間 4,749 ms
コンパイル使用メモリ 76,148 KB
実行使用メモリ 55,340 KB
最終ジャッジ日時 2024-04-20 12:45:17
合計ジャッジ時間 6,572 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 169 ms
54,988 KB
testcase_01 AC 170 ms
55,024 KB
testcase_02 AC 174 ms
55,340 KB
testcase_03 AC 167 ms
54,872 KB
testcase_04 AC 169 ms
54,708 KB
testcase_05 AC 173 ms
55,016 KB
testcase_06 AC 167 ms
55,000 KB
testcase_07 AC 170 ms
55,004 KB
testcase_08 AC 171 ms
54,988 KB
testcase_09 AC 168 ms
54,876 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