結果

問題 No.591 (^o^)/
ユーザー syusyu
提出日時 2020-08-30 19:27:57
言語 Java21
(openjdk 21)
結果
AC  
実行時間 133 ms / 2,000 ms
コード長 361 bytes
コンパイル時間 3,518 ms
コンパイル使用メモリ 75,320 KB
実行使用メモリ 54,116 KB
最終ジャッジ日時 2024-11-15 15:14:09
合計ジャッジ時間 5,372 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
53,992 KB
testcase_01 AC 132 ms
54,116 KB
testcase_02 AC 131 ms
53,832 KB
testcase_03 AC 130 ms
53,984 KB
testcase_04 AC 128 ms
53,840 KB
testcase_05 AC 133 ms
53,696 KB
testcase_06 AC 129 ms
53,804 KB
testcase_07 AC 132 ms
54,072 KB
testcase_08 AC 131 ms
53,892 KB
testcase_09 AC 130 ms
53,828 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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