結果

問題 No.591 (^o^)/
ユーザー キョウチクキョウチク
提出日時 2022-05-19 11:33:30
言語 Java21
(openjdk 21)
結果
AC  
実行時間 171 ms / 2,000 ms
コード長 342 bytes
コンパイル時間 4,351 ms
コンパイル使用メモリ 76,956 KB
実行使用メモリ 58,532 KB
最終ジャッジ日時 2023-10-17 20:02:57
合計ジャッジ時間 6,203 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 171 ms
58,472 KB
testcase_01 AC 163 ms
58,004 KB
testcase_02 AC 169 ms
58,460 KB
testcase_03 AC 168 ms
58,132 KB
testcase_04 AC 170 ms
58,292 KB
testcase_05 AC 164 ms
58,360 KB
testcase_06 AC 167 ms
58,328 KB
testcase_07 AC 166 ms
58,276 KB
testcase_08 AC 167 ms
58,532 KB
testcase_09 AC 168 ms
58,492 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class Test11 {
  public static void main(String[] args){
    Scanner sc=new Scanner(System.in);
    String[] line;
    line=sc.nextLine().split(" ");
    String eye=line[0];
    line=sc.nextLine().split(" ");
    String mouth=line[0];
    String result="("+eye+mouth+eye+")/";
    System.out.println(result);
  }
}
0