結果

問題 No.591 (^o^)/
ユーザー tentententen
提出日時 2020-11-12 09:07:30
言語 Java21
(openjdk 21)
結果
AC  
実行時間 114 ms / 2,000 ms
コード長 375 bytes
コンパイル時間 1,855 ms
コンパイル使用メモリ 74,932 KB
実行使用メモリ 41,328 KB
最終ジャッジ日時 2024-07-22 19:02:41
合計ジャッジ時間 3,767 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 90 ms
40,164 KB
testcase_01 AC 103 ms
41,120 KB
testcase_02 AC 100 ms
41,076 KB
testcase_03 AC 100 ms
40,896 KB
testcase_04 AC 91 ms
39,896 KB
testcase_05 AC 108 ms
41,328 KB
testcase_06 AC 94 ms
40,024 KB
testcase_07 AC 101 ms
41,096 KB
testcase_08 AC 103 ms
41,020 KB
testcase_09 AC 114 ms
41,160 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