結果

問題 No.591 (^o^)/
ユーザー samplelpmassamplelpmas
提出日時 2017-11-25 10:08:01
言語 Java21
(openjdk 21)
結果
AC  
実行時間 168 ms / 2,000 ms
コード長 293 bytes
コンパイル時間 2,110 ms
コンパイル使用メモリ 72,324 KB
実行使用メモリ 57,080 KB
最終ジャッジ日時 2023-08-18 06:24:42
合計ジャッジ時間 4,570 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 164 ms
56,996 KB
testcase_01 AC 166 ms
56,948 KB
testcase_02 AC 168 ms
57,048 KB
testcase_03 AC 163 ms
56,980 KB
testcase_04 AC 163 ms
56,952 KB
testcase_05 AC 164 ms
56,940 KB
testcase_06 AC 163 ms
54,728 KB
testcase_07 AC 161 ms
56,940 KB
testcase_08 AC 162 ms
57,080 KB
testcase_09 AC 164 ms
56,948 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