結果

問題 No.423 ハムスター語初級(数詞)
ユーザー jimanojimano
提出日時 2018-02-06 23:06:04
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 426 bytes
コンパイル時間 3,497 ms
コンパイル使用メモリ 77,228 KB
実行使用メモリ 50,024 KB
最終ジャッジ日時 2023-09-26 15:18:28
合計ジャッジ時間 4,748 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
49,588 KB
testcase_01 AC 49 ms
49,652 KB
testcase_02 AC 48 ms
49,740 KB
testcase_03 AC 48 ms
50,024 KB
testcase_04 AC 48 ms
49,652 KB
testcase_05 WA -
testcase_06 AC 48 ms
48,120 KB
testcase_07 AC 48 ms
49,692 KB
testcase_08 AC 47 ms
50,020 KB
testcase_09 AC 48 ms
49,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package me.yukicoder.lv1_5;

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class No0423 {
	public static void main(String[] args) {
		try (BufferedReader br = new BufferedReader(new InputStreamReader(System.in))) {
			String input = br.readLine();
			
			System.out.println(input + "ham");// 二進数の二倍
		} catch (IOException e) {
			e.printStackTrace();
		}
	}
}
0