結果

問題 No.423 ハムスター語初級(数詞)
ユーザー kenji_shioyakenji_shioya
提出日時 2016-10-22 10:28:28
言語 Java21
(openjdk 21)
結果
AC  
実行時間 141 ms / 2,000 ms
コード長 255 bytes
コンパイル時間 3,752 ms
コンパイル使用メモリ 76,888 KB
実行使用メモリ 41,296 KB
最終ジャッジ日時 2024-05-02 22:07:46
合計ジャッジ時間 5,805 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
40,312 KB
testcase_01 AC 131 ms
40,980 KB
testcase_02 AC 130 ms
41,108 KB
testcase_03 AC 137 ms
41,084 KB
testcase_04 AC 135 ms
40,916 KB
testcase_05 AC 126 ms
40,988 KB
testcase_06 AC 132 ms
41,088 KB
testcase_07 AC 134 ms
40,932 KB
testcase_08 AC 141 ms
41,296 KB
testcase_09 AC 116 ms
39,964 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Exercise154 {
  public static void main(String[] args){
    Scanner sc = new Scanner(System.in);

    String str = sc.next();

    if(!str.equals("ham")){
      str = str + "ham";
    }

    System.out.println(str);
  }
}
0