結果
問題 | No.591 (^o^)/ |
ユーザー | denderaKawazu |
提出日時 | 2018-02-14 16:45:21 |
言語 | Java (openjdk 23) |
結果 |
AC
|
実行時間 | 143 ms / 2,000 ms |
コード長 | 831 bytes |
コンパイル時間 | 2,821 ms |
コンパイル使用メモリ | 75,196 KB |
実行使用メモリ | 41,648 KB |
最終ジャッジ日時 | 2024-12-21 15:40:29 |
合計ジャッジ時間 | 4,675 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 137 ms
41,032 KB |
testcase_01 | AC | 139 ms
41,324 KB |
testcase_02 | AC | 142 ms
41,392 KB |
testcase_03 | AC | 136 ms
41,528 KB |
testcase_04 | AC | 139 ms
41,432 KB |
testcase_05 | AC | 140 ms
41,368 KB |
testcase_06 | AC | 143 ms
41,276 KB |
testcase_07 | AC | 137 ms
41,296 KB |
testcase_08 | AC | 140 ms
41,224 KB |
testcase_09 | AC | 135 ms
41,648 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)); } } }