結果
問題 | No.2599 Summer Project |
ユーザー | Maksym Shcherban |
提出日時 | 2024-01-12 22:16:16 |
言語 | JavaScript (node v21.7.1) |
結果 |
RE
|
実行時間 | - |
コード長 | 251 bytes |
コンパイル時間 | 77 ms |
コンパイル使用メモリ | 6,820 KB |
実行使用メモリ | 39,936 KB |
最終ジャッジ日時 | 2024-09-27 22:44:34 |
合計ジャッジ時間 | 2,829 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
ソースコード
const fs = require('fs'); const input = fs.readFileSync('/dev/stdin'); const [s, t] = input.split('\n').map(x => x.trim()); const all = ['watermelon', 'beachball', 'shrinebell']; const result = all.filter(x => x !== s && x !== t); console.log(result);