結果

問題 No.423 ハムスター語初級(数詞)
ユーザー kenji_shioyakenji_shioya
提出日時 2016-10-22 10:26:13
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 203 bytes
コンパイル時間 3,835 ms
コンパイル使用メモリ 76,172 KB
実行使用メモリ 54,268 KB
最終ジャッジ日時 2024-11-23 17:04:25
合計ジャッジ時間 5,394 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
54,268 KB
testcase_01 AC 124 ms
54,020 KB
testcase_02 AC 121 ms
54,188 KB
testcase_03 AC 123 ms
54,176 KB
testcase_04 AC 122 ms
53,784 KB
testcase_05 WA -
testcase_06 AC 123 ms
54,100 KB
testcase_07 AC 122 ms
54,164 KB
testcase_08 AC 124 ms
54,156 KB
testcase_09 AC 116 ms
52,908 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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

    String str = sc.next() + "ham";

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