結果

問題 No.591 (^o^)/
ユーザー syusyu
提出日時 2020-08-30 19:27:57
言語 Java21
(openjdk 21)
結果
AC  
実行時間 131 ms / 2,000 ms
コード長 361 bytes
コンパイル時間 2,176 ms
コンパイル使用メモリ 75,820 KB
実行使用メモリ 54,132 KB
最終ジャッジ日時 2024-04-27 13:05:52
合計ジャッジ時間 4,174 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
54,080 KB
testcase_01 AC 126 ms
54,024 KB
testcase_02 AC 127 ms
53,972 KB
testcase_03 AC 127 ms
54,132 KB
testcase_04 AC 128 ms
54,012 KB
testcase_05 AC 131 ms
53,940 KB
testcase_06 AC 129 ms
53,908 KB
testcase_07 AC 128 ms
53,780 KB
testcase_08 AC 128 ms
53,820 KB
testcase_09 AC 128 ms
53,780 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args){
        Scanner sc=new Scanner(System.in);
        String eye=sc.next();
        String mouth=sc.next();
        StringBuilder sb=new StringBuilder();
        sb.append("(").append(eye).append(mouth).append(eye).append(")/");
        System.out.println(sb.toString());
    }
}
0