結果
問題 | No.591 (^o^)/ |
ユーザー | denderaKawazu |
提出日時 | 2018-02-14 16:45:21 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 130 ms / 2,000 ms |
コード長 | 831 bytes |
コンパイル時間 | 2,333 ms |
コンパイル使用メモリ | 74,880 KB |
実行使用メモリ | 41,604 KB |
最終ジャッジ日時 | 2024-06-01 10:13:04 |
合計ジャッジ時間 | 4,027 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 130 ms
41,572 KB |
testcase_01 | AC | 111 ms
39,896 KB |
testcase_02 | AC | 128 ms
41,360 KB |
testcase_03 | AC | 129 ms
41,048 KB |
testcase_04 | AC | 127 ms
41,108 KB |
testcase_05 | AC | 127 ms
41,360 KB |
testcase_06 | AC | 130 ms
41,292 KB |
testcase_07 | AC | 114 ms
40,016 KB |
testcase_08 | AC | 127 ms
41,304 KB |
testcase_09 | AC | 129 ms
41,604 KB |
ソースコード
import java.io.OutputStream; import java.io.IOException; import java.io.InputStream; import java.io.PrintWriter; import java.util.Scanner; /** * Built using CHelper plug-in * Actual solution is at the top */ public class Main { public static void main(String[] args) { InputStream inputStream = System.in; OutputStream outputStream = System.out; Scanner in = new Scanner(inputStream); PrintWriter out = new PrintWriter(outputStream); Task solver = new Task(); solver.solve(1, in, out); out.close(); } static class Task { public void solve(int testNumber, Scanner in, PrintWriter out) { String eye = in.next(); String mouth = in.next(); out.println(String.format("(%s%s%s)/", eye, mouth, eye)); } } }