結果

問題 No.591 (^o^)/
ユーザー tentententen
提出日時 2020-11-12 09:07:30
言語 Java21
(openjdk 21)
結果
AC  
実行時間 114 ms / 2,000 ms
コード長 375 bytes
コンパイル時間 1,901 ms
コンパイル使用メモリ 71,364 KB
実行使用メモリ 56,204 KB
最終ジャッジ日時 2023-09-30 01:06:01
合計ジャッジ時間 3,841 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
56,148 KB
testcase_01 AC 113 ms
55,564 KB
testcase_02 AC 114 ms
55,636 KB
testcase_03 AC 114 ms
56,180 KB
testcase_04 AC 113 ms
55,884 KB
testcase_05 AC 113 ms
55,892 KB
testcase_06 AC 113 ms
55,984 KB
testcase_07 AC 112 ms
55,708 KB
testcase_08 AC 113 ms
56,204 KB
testcase_09 AC 113 ms
55,552 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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