結果

問題 No.591 (^o^)/
ユーザー bennkei0327bennkei0327
提出日時 2018-01-15 10:38:22
言語 Java
(openjdk 23)
結果
AC  
実行時間 174 ms / 2,000 ms
コード長 291 bytes
コンパイル時間 3,820 ms
コンパイル使用メモリ 76,076 KB
実行使用メモリ 42,424 KB
最終ジャッジ日時 2024-12-24 02:34:39
合計ジャッジ時間 6,282 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 172 ms
42,232 KB
testcase_01 AC 173 ms
41,956 KB
testcase_02 AC 171 ms
42,108 KB
testcase_03 AC 170 ms
42,120 KB
testcase_04 AC 171 ms
42,340 KB
testcase_05 AC 173 ms
42,296 KB
testcase_06 AC 173 ms
42,212 KB
testcase_07 AC 172 ms
42,192 KB
testcase_08 AC 174 ms
42,424 KB
testcase_09 AC 162 ms
41,944 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