結果

問題 No.423 ハムスター語初級(数詞)
ユーザー jimanojimano
提出日時 2018-02-06 23:08:30
言語 Java21
(openjdk 21)
結果
AC  
実行時間 59 ms / 2,000 ms
コード長 478 bytes
コンパイル時間 3,512 ms
コンパイル使用メモリ 79,424 KB
実行使用メモリ 50,432 KB
最終ジャッジ日時 2024-07-19 09:33:12
合計ジャッジ時間 5,048 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
50,324 KB
testcase_01 AC 55 ms
50,004 KB
testcase_02 AC 53 ms
50,048 KB
testcase_03 AC 55 ms
50,356 KB
testcase_04 AC 54 ms
49,884 KB
testcase_05 AC 48 ms
50,088 KB
testcase_06 AC 52 ms
50,340 KB
testcase_07 AC 53 ms
50,376 KB
testcase_08 AC 53 ms
50,312 KB
testcase_09 AC 59 ms
50,432 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.equals("ham") ? input : input + "ham");// 二進数の二倍;// 二進数の二倍
		} catch (IOException e) {
			e.printStackTrace();
		}
	}
}
0