結果

問題 No.591 (^o^)/
ユーザー samplelpmassamplelpmas
提出日時 2017-11-25 10:08:01
言語 Java21
(openjdk 21)
結果
AC  
実行時間 151 ms / 2,000 ms
コード長 293 bytes
コンパイル時間 2,128 ms
コンパイル使用メモリ 75,804 KB
実行使用メモリ 42,604 KB
最終ジャッジ日時 2024-05-05 12:26:25
合計ジャッジ時間 3,975 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 147 ms
42,516 KB
testcase_01 AC 146 ms
42,100 KB
testcase_02 AC 134 ms
42,508 KB
testcase_03 AC 131 ms
42,324 KB
testcase_04 AC 143 ms
42,332 KB
testcase_05 AC 144 ms
42,504 KB
testcase_06 AC 151 ms
42,584 KB
testcase_07 AC 141 ms
42,212 KB
testcase_08 AC 146 ms
42,364 KB
testcase_09 AC 141 ms
42,604 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