結果

問題 No.591 (^o^)/
ユーザー sudo_yumsudo_yum
提出日時 2018-05-25 13:05:16
言語 Java21
(openjdk 21)
結果
AC  
実行時間 167 ms / 2,000 ms
コード長 286 bytes
コンパイル時間 2,054 ms
コンパイル使用メモリ 72,932 KB
実行使用メモリ 57,108 KB
最終ジャッジ日時 2023-09-11 03:24:40
合計ジャッジ時間 4,615 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 165 ms
57,044 KB
testcase_01 AC 164 ms
57,040 KB
testcase_02 AC 160 ms
56,932 KB
testcase_03 AC 161 ms
56,968 KB
testcase_04 AC 162 ms
56,840 KB
testcase_05 AC 165 ms
56,888 KB
testcase_06 AC 166 ms
57,000 KB
testcase_07 AC 167 ms
57,108 KB
testcase_08 AC 164 ms
56,948 KB
testcase_09 AC 166 ms
56,960 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