結果

問題 No.591 (^o^)/
ユーザー bennkei0327bennkei0327
提出日時 2018-01-15 10:38:22
言語 Java21
(openjdk 21)
結果
AC  
実行時間 161 ms / 2,000 ms
コード長 291 bytes
コンパイル時間 6,071 ms
コンパイル使用メモリ 73,396 KB
実行使用メモリ 57,200 KB
最終ジャッジ日時 2023-08-25 17:13:15
合計ジャッジ時間 5,776 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 155 ms
56,828 KB
testcase_01 AC 156 ms
57,060 KB
testcase_02 AC 153 ms
56,792 KB
testcase_03 AC 154 ms
56,756 KB
testcase_04 AC 153 ms
56,816 KB
testcase_05 AC 153 ms
56,932 KB
testcase_06 AC 161 ms
57,168 KB
testcase_07 AC 158 ms
57,088 KB
testcase_08 AC 157 ms
57,140 KB
testcase_09 AC 160 ms
57,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.lang.*;

public class N591{
  public static void main(String[] args) {

    Scanner sc = new Scanner(System.in);
    String str[] = new String[2];


    str[0] = sc.next();
    str[1] = sc.next();

    System.out.println("("+str[0]+str[1]+str[0]+")/");
  }
}
0