結果
問題 | No.2599 Summer Project |
ユーザー | sysnote8main |
提出日時 | 2024-02-03 22:17:25 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 122 ms / 2,000 ms |
コード長 | 456 bytes |
コンパイル時間 | 2,932 ms |
コンパイル使用メモリ | 74,884 KB |
実行使用メモリ | 54,368 KB |
最終ジャッジ日時 | 2024-09-28 11:03:13 |
合計ジャッジ時間 | 4,512 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 122 ms
53,964 KB |
testcase_01 | AC | 122 ms
54,224 KB |
testcase_02 | AC | 108 ms
52,764 KB |
testcase_03 | AC | 115 ms
52,832 KB |
testcase_04 | AC | 122 ms
54,152 KB |
testcase_05 | AC | 118 ms
54,368 KB |
ソースコード
import java.util.ArrayList; import java.util.Scanner; public class Main { public static void main(String[] args) { // "watermelon", "beachball", "shrinebell" ArrayList<String> choices = new ArrayList<>(); choices.add("watermelon"); choices.add("beachball"); choices.add("shrinebell"); Scanner sc = new Scanner(System.in); choices.remove(sc.next()); choices.remove(sc.next()); System.out.println(choices.get(0)); } }