結果

問題 No.2599 Summer Project
ユーザー guanghuichen1guanghuichen1
提出日時 2024-01-22 19:21:43
言語 Java21
(openjdk 21)
結果
AC  
実行時間 131 ms / 2,000 ms
コード長 648 bytes
コンパイル時間 3,836 ms
コンパイル使用メモリ 75,360 KB
実行使用メモリ 54,324 KB
最終ジャッジ日時 2024-09-28 06:28:17
合計ジャッジ時間 5,257 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
54,088 KB
testcase_01 AC 130 ms
54,100 KB
testcase_02 AC 121 ms
54,136 KB
testcase_03 AC 127 ms
54,324 KB
testcase_04 AC 122 ms
53,832 KB
testcase_05 AC 122 ms
53,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.HashMap;
import java.util.Scanner;

public class Main1 {
    public static void main(String[] args) {
        Scanner sc=new Scanner(System.in);
        HashMap<String,Boolean>map=new HashMap<>();
        String []ar={"watermelon","beachball","shrinebell"};
        map.put(ar[0], false);
        map.put(ar[1], false);
        map.put(ar[2], false);
        for (int i = 0; i < 2; i++) {
            String tem=sc.next();
            map.put(tem, true);
        }
        sc.close();
        for (String s : map.keySet()) {
            if(map.get(s)==false){
                System.out.println(s);
            }
        }
    }
}
0