結果

問題 No.591 (^o^)/
ユーザー マサマサ
提出日時 2022-02-08 21:56:34
言語 Java21
(openjdk 21)
結果
AC  
実行時間 161 ms / 2,000 ms
コード長 262 bytes
コンパイル時間 2,724 ms
コンパイル使用メモリ 76,292 KB
実行使用メモリ 55,200 KB
最終ジャッジ日時 2024-06-23 17:49:08
合計ジャッジ時間 5,014 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 147 ms
55,052 KB
testcase_01 AC 159 ms
55,116 KB
testcase_02 AC 159 ms
55,036 KB
testcase_03 AC 159 ms
55,064 KB
testcase_04 AC 159 ms
55,200 KB
testcase_05 AC 143 ms
54,540 KB
testcase_06 AC 156 ms
55,048 KB
testcase_07 AC 160 ms
55,032 KB
testcase_08 AC 161 ms
54,888 KB
testcase_09 AC 146 ms
54,884 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		String eyes = sc.next();
		String mouth = sc.next();
		System.out.println("(" + eyes + mouth + eyes + ")" + "/");
		sc.close();
	}
}
0