結果

問題 No.423 ハムスター語初級(数詞)
ユーザー kenji_shioyakenji_shioya
提出日時 2016-10-22 10:26:13
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 203 bytes
コンパイル時間 3,008 ms
コンパイル使用メモリ 76,168 KB
実行使用メモリ 52,660 KB
最終ジャッジ日時 2024-05-02 22:07:40
合計ジャッジ時間 4,725 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
41,148 KB
testcase_01 AC 113 ms
41,256 KB
testcase_02 AC 96 ms
40,908 KB
testcase_03 AC 97 ms
40,780 KB
testcase_04 AC 114 ms
41,072 KB
testcase_05 WA -
testcase_06 AC 130 ms
41,244 KB
testcase_07 AC 114 ms
40,916 KB
testcase_08 AC 115 ms
41,216 KB
testcase_09 AC 103 ms
40,912 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