結果

問題 No.591 (^o^)/
ユーザー chiyohime02chiyohime02
提出日時 2017-11-20 18:30:42
言語 Java21
(openjdk 21)
結果
AC  
実行時間 162 ms / 2,000 ms
コード長 456 bytes
コンパイル時間 2,197 ms
コンパイル使用メモリ 72,976 KB
実行使用メモリ 57,156 KB
最終ジャッジ日時 2023-08-17 08:21:38
合計ジャッジ時間 4,724 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 159 ms
56,876 KB
testcase_01 AC 159 ms
57,156 KB
testcase_02 AC 159 ms
56,752 KB
testcase_03 AC 161 ms
56,872 KB
testcase_04 AC 159 ms
56,704 KB
testcase_05 AC 161 ms
56,940 KB
testcase_06 AC 158 ms
57,072 KB
testcase_07 AC 162 ms
57,008 KB
testcase_08 AC 159 ms
56,948 KB
testcase_09 AC 161 ms
57,068 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/* package whatever; // don't place package name! */

import java.util.*;
import java.lang.*;
import java.io.*;

/* Name of the class has to be "Main" only if the class is public. */
class Ideone
{
	public static void main (String[] args) throws java.lang.Exception
	{
		// your code goes here
	    Scanner scan = new Scanner(System.in);
		
		String i = scan.next();
	   String m = scan.next();
	    
	    System.out.println("(" + i + m +  i + ")/");
		}
}
0