結果

問題 No.591 (^o^)/
ユーザー samplelpmassamplelpmas
提出日時 2017-11-25 10:08:01
言語 Java
(openjdk 23)
結果
AC  
実行時間 148 ms / 2,000 ms
コード長 293 bytes
コンパイル時間 2,130 ms
コンパイル使用メモリ 76,020 KB
実行使用メモリ 42,648 KB
最終ジャッジ日時 2024-11-27 09:48:55
合計ジャッジ時間 4,107 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 141 ms
42,364 KB
testcase_01 AC 143 ms
42,648 KB
testcase_02 AC 146 ms
42,424 KB
testcase_03 AC 141 ms
42,452 KB
testcase_04 AC 144 ms
42,264 KB
testcase_05 AC 148 ms
41,792 KB
testcase_06 AC 138 ms
42,648 KB
testcase_07 AC 130 ms
42,520 KB
testcase_08 AC 132 ms
41,924 KB
testcase_09 AC 130 ms
42,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

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);

        System.out.println("(" + eye + mouth + eye + ")/");

    }

}
0