結果

問題 No.591 (^o^)/
ユーザー eagleeagle
提出日時 2022-06-15 14:23:11
言語 Java21
(openjdk 21)
結果
AC  
実行時間 165 ms / 2,000 ms
コード長 323 bytes
コンパイル時間 2,400 ms
コンパイル使用メモリ 77,204 KB
実行使用メモリ 55,188 KB
最終ジャッジ日時 2024-04-14 22:51:01
合計ジャッジ時間 4,929 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 163 ms
55,076 KB
testcase_01 AC 163 ms
55,092 KB
testcase_02 AC 164 ms
54,952 KB
testcase_03 AC 165 ms
54,932 KB
testcase_04 AC 163 ms
55,188 KB
testcase_05 AC 163 ms
55,132 KB
testcase_06 AC 162 ms
54,892 KB
testcase_07 AC 165 ms
55,028 KB
testcase_08 AC 162 ms
54,808 KB
testcase_09 AC 164 ms
55,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {

	public static void main(String[] args) {
		// TODO 自動生成されたメソッド・スタブ
		Scanner sc = new Scanner(System.in);
		
		String eye = sc.next();
		String mouth = sc.next();
		
		String face = "(" + eye + mouth + eye + ")/";
		
		System.out.println(face);
	}
}
0