結果

問題 No.591 (^o^)/
ユーザー eagleeagle
提出日時 2022-06-15 14:23:11
言語 Java21
(openjdk 21)
結果
AC  
実行時間 144 ms / 2,000 ms
コード長 323 bytes
コンパイル時間 2,213 ms
コンパイル使用メモリ 75,968 KB
実行使用メモリ 55,136 KB
最終ジャッジ日時 2024-10-04 03:27:48
合計ジャッジ時間 3,960 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 141 ms
54,688 KB
testcase_01 AC 138 ms
54,700 KB
testcase_02 AC 140 ms
55,136 KB
testcase_03 AC 144 ms
54,760 KB
testcase_04 AC 125 ms
54,856 KB
testcase_05 AC 126 ms
54,844 KB
testcase_06 AC 138 ms
54,672 KB
testcase_07 AC 127 ms
54,452 KB
testcase_08 AC 143 ms
54,952 KB
testcase_09 AC 143 ms
54,696 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