結果
問題 |
No.591 (^o^)/
|
ユーザー |
|
提出日時 | 2018-01-24 20:44:35 |
言語 | Java (openjdk 23) |
結果 |
AC
|
実行時間 | 94 ms / 2,000 ms |
コード長 | 456 bytes |
コンパイル時間 | 3,285 ms |
コンパイル使用メモリ | 79,748 KB |
実行使用メモリ | 40,064 KB |
最終ジャッジ日時 | 2024-12-26 07:54:29 |
合計ジャッジ時間 | 4,841 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 7 |
ソースコード
package me.yukicoder.lv1; import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; public class No0591 { public static void main(String[] args) { try (BufferedReader br = new BufferedReader(new InputStreamReader(System.in))) { String input = br.readLine(); String input2 = br.readLine(); System.out.println("(" + input + input2 + input + ")/"); } catch (IOException e) { e.printStackTrace(); } } }