結果

問題 No.591 (^o^)/
ユーザー sudo_yumsudo_yum
提出日時 2018-05-25 13:05:16
言語 Java21
(openjdk 21)
結果
AC  
実行時間 163 ms / 2,000 ms
コード長 286 bytes
コンパイル時間 2,138 ms
コンパイル使用メモリ 76,020 KB
実行使用メモリ 42,952 KB
最終ジャッジ日時 2024-06-28 17:56:06
合計ジャッジ時間 4,327 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 157 ms
42,876 KB
testcase_01 AC 158 ms
42,952 KB
testcase_02 AC 136 ms
42,504 KB
testcase_03 AC 157 ms
42,560 KB
testcase_04 AC 160 ms
42,564 KB
testcase_05 AC 149 ms
42,660 KB
testcase_06 AC 155 ms
42,696 KB
testcase_07 AC 158 ms
42,588 KB
testcase_08 AC 153 ms
42,496 KB
testcase_09 AC 163 ms
42,588 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main{
  static StringBuilder sb = new StringBuilder("");
  public static void main(String[] args) {
    Scanner sc = new Scanner(System.in);
    String S1 = sc.nextLine();
    String S2 = sc.nextLine();
    System.out.println("("+S1+S2+S1+")/");
  }
}
0