結果

問題 No.591 (^o^)/
ユーザー キョウチクキョウチク
提出日時 2022-05-19 11:33:30
言語 Java21
(openjdk 21)
結果
AC  
実行時間 166 ms / 2,000 ms
コード長 342 bytes
コンパイル時間 3,383 ms
コンパイル使用メモリ 82,384 KB
実行使用メモリ 42,852 KB
最終ジャッジ日時 2024-09-17 17:14:38
合計ジャッジ時間 5,749 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 161 ms
42,444 KB
testcase_01 AC 149 ms
42,352 KB
testcase_02 AC 160 ms
42,468 KB
testcase_03 AC 164 ms
42,812 KB
testcase_04 AC 147 ms
42,412 KB
testcase_05 AC 161 ms
42,552 KB
testcase_06 AC 143 ms
42,092 KB
testcase_07 AC 161 ms
42,852 KB
testcase_08 AC 164 ms
42,512 KB
testcase_09 AC 166 ms
42,668 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