結果

問題 No.591 (^o^)/
ユーザー bennkei0327bennkei0327
提出日時 2018-01-15 10:38:22
言語 Java21
(openjdk 21)
結果
AC  
実行時間 167 ms / 2,000 ms
コード長 291 bytes
コンパイル時間 3,914 ms
コンパイル使用メモリ 76,524 KB
実行使用メモリ 42,420 KB
最終ジャッジ日時 2024-06-06 11:27:23
合計ジャッジ時間 6,543 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 153 ms
41,864 KB
testcase_01 AC 165 ms
42,420 KB
testcase_02 AC 164 ms
42,380 KB
testcase_03 AC 167 ms
42,240 KB
testcase_04 AC 165 ms
41,900 KB
testcase_05 AC 164 ms
42,316 KB
testcase_06 AC 166 ms
42,104 KB
testcase_07 AC 167 ms
41,912 KB
testcase_08 AC 166 ms
41,896 KB
testcase_09 AC 166 ms
42,068 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