結果

問題 No.591 (^o^)/
ユーザー chiyohime02
提出日時 2017-11-20 18:30:42
言語 Java
(openjdk 23)
結果
AC  
実行時間 148 ms / 2,000 ms
コード長 456 bytes
コンパイル時間 2,109 ms
コンパイル使用メモリ 85,524 KB
実行使用メモリ 42,608 KB
最終ジャッジ日時 2024-11-26 03:23:25
合計ジャッジ時間 4,423 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 7
権限があれば一括ダウンロードができます

ソースコード

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