結果

問題 No.591 (^o^)/
ユーザー マサマサ
提出日時 2022-02-08 21:56:34
言語 Java21
(openjdk 21)
結果
AC  
実行時間 162 ms / 2,000 ms
コード長 262 bytes
コンパイル時間 2,766 ms
コンパイル使用メモリ 72,804 KB
実行使用メモリ 57,332 KB
最終ジャッジ日時 2023-09-05 22:25:30
合計ジャッジ時間 5,245 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 158 ms
57,072 KB
testcase_01 AC 158 ms
56,756 KB
testcase_02 AC 158 ms
57,072 KB
testcase_03 AC 158 ms
57,228 KB
testcase_04 AC 157 ms
56,984 KB
testcase_05 AC 159 ms
57,108 KB
testcase_06 AC 162 ms
57,232 KB
testcase_07 AC 156 ms
57,332 KB
testcase_08 AC 158 ms
56,956 KB
testcase_09 AC 156 ms
56,952 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