結果

問題 No.423 ハムスター語初級(数詞)
ユーザー matsuyoshi30matsuyoshi30
提出日時 2017-01-15 22:01:27
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 327 bytes
コンパイル時間 2,310 ms
コンパイル使用メモリ 73,784 KB
実行使用メモリ 55,936 KB
最終ジャッジ日時 2023-08-23 11:17:22
合計ジャッジ時間 4,396 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
55,616 KB
testcase_01 AC 124 ms
55,760 KB
testcase_02 AC 123 ms
55,504 KB
testcase_03 AC 121 ms
55,900 KB
testcase_04 AC 123 ms
55,548 KB
testcase_05 WA -
testcase_06 AC 121 ms
55,916 KB
testcase_07 AC 120 ms
55,812 KB
testcase_08 AC 119 ms
55,776 KB
testcase_09 AC 122 ms
55,936 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;

class Main {
    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        String n = in.next();

        n = n + "ham";

        System.out.println(n);

        in.close();
    }
}
0